File tree Expand file tree Collapse file tree 3 files changed +2
-11
lines changed Expand file tree Collapse file tree 3 files changed +2
-11
lines changed Original file line number Diff line number Diff line change 238
238
echo " "
239
239
echo " Sketch Index $(( $sketchnum - 1 )) "
240
240
241
- run_test $target $sketch $options $erase
242
- exit_code=$?
241
+ exit_code=0
242
+ run_test $target $sketch $options $erase || exit_code=$?
243
243
if [ $exit_code -ne 0 ]; then
244
244
error=$exit_code
245
245
fi
Original file line number Diff line number Diff line change @@ -156,9 +156,6 @@ jobs:
156
156
pattern : tests-results-qemu-*
157
157
path : ./results/qemu
158
158
159
- - run : |
160
- ls -R ./results
161
-
162
159
- name : Publish Unit Test Results
163
160
uses : EnricoMi/publish-unit-test-result-action@v2
164
161
with :
Original file line number Diff line number Diff line change 41
41
# tests/**/*.xml
42
42
# tests/**/result_*.json
43
43
44
- - uses : LIT-Protocol/artifact-exists-action@v0
45
- id : check-artifact
46
- with :
47
- name : " tests-results-wokwi-${{ inputs.chip }}-${{ inputs.type }}"
48
-
49
44
- name : Evaluate if tests should be run
50
45
id : check-tests
51
46
run : |
52
- echo "Artifact exists: ${{ steps.check-artifact.outputs.exists }}"
53
47
cache_exists=${{ steps.get-cache-results.outputs.cache-hit == 'true' || false }}
54
48
enabled=true
55
49
You can’t perform that action at this time.
0 commit comments