@@ -135,17 +135,27 @@ jobs:
135135 with :
136136 github-token : ${{ secrets.GITHUB_TOKEN }}
137137 run-id : ${{ github.event.workflow_run.id }}
138- pattern : tests -results-hw-*
138+ pattern : test -results-hw-*
139139 merge-multiple : true
140140 path : artifacts/results/hw
141141
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+
142152 - name : Download and extract parent QEMU results
143153 uses : actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
144154 continue-on-error : true
145155 with :
146156 github-token : ${{ secrets.GITHUB_TOKEN }}
147157 run-id : ${{ github.event.workflow_run.id }}
148- pattern : tests -results-qemu-*
158+ pattern : test -results-qemu-*
149159 merge-multiple : true
150160 path : artifacts/results/qemu
151161
@@ -221,7 +231,7 @@ jobs:
221231 if : needs.get-artifacts.outputs.pr_num
222232 uses : actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
223233 with :
224- key : tests -${{ env.id }}-results-wokwi
234+ key : test -${{ env.id }}-results-wokwi
225235 path : |
226236 tests/**/*.xml
227237 tests/**/result_*.json
@@ -274,7 +284,7 @@ jobs:
274284 with :
275285 github-token : ${{ secrets.GITHUB_TOKEN }}
276286 run-id : ${{ github.event.workflow_run.id }}
277- name : tests -bin-${{ matrix.chip }}-${{ matrix.type }}
287+ name : test -bin-${{ matrix.chip }}-${{ matrix.type }}
278288 path : |
279289 ~/.arduino/tests/${{ matrix.chip }}
280290
@@ -289,7 +299,7 @@ jobs:
289299 uses : actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
290300 if : steps.check-tests.outputs.enabled == 'true' && needs.get-artifacts.outputs.pr_num
291301 with :
292- key : tests -${{ env.id }}-results-wokwi
302+ key : test -${{ env.id }}-results-wokwi
293303 path : |
294304 tests/**/*.xml
295305 tests/**/result_*.json
@@ -298,7 +308,7 @@ jobs:
298308 uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
299309 if : always()
300310 with :
301- name : tests -results-wokwi-${{ matrix.chip }}-${{ matrix.type }}
311+ name : test -results-wokwi-${{ matrix.chip }}-${{ matrix.type }}
302312 overwrite : true
303313 path : |
304314 tests/**/*.xml
0 commit comments