File tree 1 file changed +12
-3
lines changed
1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 65
65
uses : actions/download-artifact@v4
66
66
with :
67
67
name : ${{matrix.chip}}-${{matrix.chunks}}.artifacts
68
- path : ~/.arduino/tests/
68
+ path : ~/
69
69
run-id : ${{github.event.workflow_run.id}}
70
70
github-token : ${{env.GITHUB_TOKEN}}
71
71
@@ -82,12 +82,21 @@ jobs:
82
82
run : |
83
83
bash .github/scripts/tests_run.sh -c -t ${{matrix.chip}} -i ${{matrix.chunks}} -m ${{env.MAX_CHUNKS}} -w ${{env.WOKWI_TIMEOUT}}
84
84
85
+ - name : Check if tests were skipped
86
+ id : check-test-skipped
87
+ run : |
88
+ if [ -f ~/.test_skipped ]; then
89
+ echo "skipped=true" >> $GITHUB_OUTPUT
90
+ else
91
+ echo "skipped=false" >> $GITHUB_OUTPUT
92
+ fi
93
+
85
94
- name : Upload test result artifacts
86
95
uses : actions/upload-artifact@v4
87
- if : always()
96
+ if : ${{ always() && steps.check-test-skipped.outputs.skipped == 'false' }}
88
97
with :
89
98
name : wokwi_results-${{matrix.chip}}-${{matrix.chunks}}
90
- path : tests/*/*.xml
99
+ path : tests/** /*.xml
91
100
92
101
report-result :
93
102
name : Report wokwi test result
You can’t perform that action at this time.
0 commit comments