File tree Expand file tree Collapse file tree 1 file changed +29
-7
lines changed Expand file tree Collapse file tree 1 file changed +29
-7
lines changed Original file line number Diff line number Diff line change 40
40
default : 1
41
41
required : false
42
42
type : number
43
- run-linux :
44
- description : " run Linux tests"
43
+ run-linux-intel :
44
+ description : " run Linux-intel tests"
45
+ default : true
46
+ required : false
47
+ type : boolean
48
+ run-linux-arm :
49
+ description : " run Linux-arm tests"
45
50
default : true
46
51
required : false
47
52
type : boolean
@@ -151,22 +156,38 @@ jobs:
151
156
arch : arm
152
157
arch-emoji : 💪
153
158
collect-junit : false
154
- ubuntu :
155
- if : github.event_name != 'workflow_dispatch' || inputs.run-linux
159
+ ubuntu-intel :
160
+ if : github.event_name != 'workflow_dispatch' || inputs.run-linux-intel
156
161
uses : ./.github/workflows/test-single.yml
157
162
needs : configure
158
163
with :
159
164
os-emoji : 🐧
160
165
matrix : ubuntu
161
166
name : Ubuntu
162
- file_name : ubuntu
163
- concurrency-name : ubuntu
167
+ file_name : ubuntu-intel
168
+ concurrency-name : ubuntu-intel
164
169
configuration : ${{ needs.configure.outputs.configuration }}
165
170
matrix_mode : ${{ needs.configure.outputs.matrix_mode }}
166
171
runs-on : ubuntu-latest
167
172
arch : intel
168
173
arch-emoji : 🌀
169
174
collect-junit : false
175
+ ubuntu-arm :
176
+ if : github.event_name != 'workflow_dispatch' || inputs.run-linux-arm
177
+ uses : ./.github/workflows/test-single.yml
178
+ needs : configure
179
+ with :
180
+ os-emoji : 🐧
181
+ matrix : ubuntu
182
+ name : Ubuntu
183
+ file_name : ubuntu-arm
184
+ concurrency-name : ubuntu-arm
185
+ configuration : ${{ needs.configure.outputs.configuration }}
186
+ matrix_mode : ${{ needs.configure.outputs.matrix_mode }}
187
+ runs-on : ubuntu-24.04-arm
188
+ arch : arm
189
+ arch-emoji : 💪
190
+ collect-junit : false
170
191
windows :
171
192
if : github.event_name != 'workflow_dispatch' || inputs.run-windows
172
193
uses : ./.github/workflows/test-single.yml
@@ -192,7 +213,8 @@ jobs:
192
213
- configure
193
214
- macos-intel
194
215
- macos-arm
195
- - ubuntu
216
+ - ubuntu-intel
217
+ - ubuntu-arm
196
218
- windows
197
219
strategy :
198
220
fail-fast : false
You can’t perform that action at this time.
0 commit comments