@@ -135,17 +135,27 @@ jobs:
135
135
with :
136
136
github-token : ${{ secrets.GITHUB_TOKEN }}
137
137
run-id : ${{ github.event.workflow_run.id }}
138
- pattern : tests -results-hw-*
138
+ pattern : test -results-hw-*
139
139
merge-multiple : true
140
140
path : artifacts/results/hw
141
141
142
+ - name : Download and extract parent GitLab results
143
+ uses : actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
144
+ continue-on-error : true
145
+ with :
146
+ github-token : ${{ secrets.GITHUB_TOKEN }}
147
+ run-id : ${{ github.event.workflow_run.id }}
148
+ pattern : test-results-gitlab
149
+ merge-multiple : true
150
+ path : artifacts/results/gitlab
151
+
142
152
- name : Download and extract parent QEMU results
143
153
uses : actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
144
154
continue-on-error : true
145
155
with :
146
156
github-token : ${{ secrets.GITHUB_TOKEN }}
147
157
run-id : ${{ github.event.workflow_run.id }}
148
- pattern : tests -results-qemu-*
158
+ pattern : test -results-qemu-*
149
159
merge-multiple : true
150
160
path : artifacts/results/qemu
151
161
@@ -221,7 +231,7 @@ jobs:
221
231
if : needs.get-artifacts.outputs.pr_num
222
232
uses : actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
223
233
with :
224
- key : tests -${{ env.id }}-results-wokwi
234
+ key : test -${{ env.id }}-results-wokwi
225
235
path : |
226
236
tests/**/*.xml
227
237
tests/**/result_*.json
@@ -274,7 +284,7 @@ jobs:
274
284
with :
275
285
github-token : ${{ secrets.GITHUB_TOKEN }}
276
286
run-id : ${{ github.event.workflow_run.id }}
277
- name : tests -bin-${{ matrix.chip }}-${{ matrix.type }}
287
+ name : test -bin-${{ matrix.chip }}-${{ matrix.type }}
278
288
path : |
279
289
~/.arduino/tests/${{ matrix.chip }}
280
290
@@ -289,7 +299,7 @@ jobs:
289
299
uses : actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
290
300
if : steps.check-tests.outputs.enabled == 'true' && needs.get-artifacts.outputs.pr_num
291
301
with :
292
- key : tests -${{ env.id }}-results-wokwi
302
+ key : test -${{ env.id }}-results-wokwi
293
303
path : |
294
304
tests/**/*.xml
295
305
tests/**/result_*.json
@@ -298,7 +308,7 @@ jobs:
298
308
uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
299
309
if : always()
300
310
with :
301
- name : tests -results-wokwi-${{ matrix.chip }}-${{ matrix.type }}
311
+ name : test -results-wokwi-${{ matrix.chip }}-${{ matrix.type }}
302
312
overwrite : true
303
313
path : |
304
314
tests/**/*.xml
0 commit comments