Skip to content

Commit 2c02d96

Browse files
committed
fix
1 parent 095b8ba commit 2c02d96

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

.github/workflows/hw.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,16 +77,16 @@ jobs:
7777
run: |
7878
pip install -U pip
7979
pip install -r tests/requirements.txt --extra-index-url https://dl.espressif.com/pypi
80+
apt update
81+
apt install -y jq
8082
8183
- name: Get binaries
8284
if: ${{ steps.check-tests.outputs.enabled == 'true' }}
8385
uses: actions/download-artifact@v4
8486
with:
8587
name: tests-bin-${{ inputs.chip }}-${{ inputs.type }}
8688
path: |
87-
~/.arduino/tests/**/build*.tmp/*.bin
88-
~/.arduino/tests/**/build*.tmp/*.elf
89-
~/.arduino/tests/**/build*.tmp/*.json
89+
~/.arduino/tests
9090
9191
- name: Run Tests
9292
if: ${{ steps.check-tests.outputs.enabled == 'true' }}

.github/workflows/qemu.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,7 @@ jobs:
117117
with:
118118
name: tests-bin-${{ inputs.chip }}-${{ inputs.type }}
119119
path: |
120-
~/.arduino/tests/**/build*.tmp/*.bin
121-
~/.arduino/tests/**/build*.tmp/*.elf
122-
~/.arduino/tests/**/build*.tmp/*.json
120+
~/.arduino/tests
123121
124122
- name: Run Tests
125123
if: ${{ steps.check-tests.outputs.enabled == 'true' }}

.github/workflows/wokwi.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,7 @@ jobs:
9595
with:
9696
name: tests-bin-${{ inputs.chip }}-${{ inputs.type }}
9797
path: |
98-
~/.arduino/tests/**/build*.tmp/*.bin
99-
~/.arduino/tests/**/build*.tmp/*.elf
100-
~/.arduino/tests/**/build*.tmp/*.json
98+
~/.arduino/tests
10199
102100
- name: Run Tests
103101
if: ${{ steps.check-tests.outputs.enabled == 'true' }}

0 commit comments

Comments
 (0)