File tree 3 files changed +11
-21
lines changed
3 files changed +11
-21
lines changed Original file line number Diff line number Diff line change @@ -77,18 +77,16 @@ jobs:
77
77
run : |
78
78
pip install -U pip
79
79
pip install -r tests/requirements.txt --extra-index-url https://dl.espressif.com/pypi
80
+ apt update
81
+ apt install -y jq
80
82
81
83
- name : Get binaries
82
- id : cache-build-binaries
83
- uses : actions/cache/restore@v4
84
84
if : ${{ steps.check-tests.outputs.enabled == 'true' }}
85
+ uses : actions/download-artifact@v4
85
86
with :
86
- fail-on-cache-miss : true
87
- key : tests-${{ env.id }}-bin
87
+ name : tests-bin-${{ inputs.chip }}-${{ inputs.type }}
88
88
path : |
89
- ~/.arduino/tests/**/build*.tmp/*.bin
90
- ~/.arduino/tests/**/build*.tmp/*.elf
91
- ~/.arduino/tests/**/build*.tmp/*.json
89
+ ~/.arduino/tests
92
90
93
91
- name : Run Tests
94
92
if : ${{ steps.check-tests.outputs.enabled == 'true' }}
Original file line number Diff line number Diff line change @@ -113,15 +113,11 @@ jobs:
113
113
114
114
- name : Get binaries
115
115
if : ${{ steps.check-tests.outputs.enabled == 'true' }}
116
- id : cache-build-binaries
117
- uses : actions/cache/restore@v4
116
+ uses : actions/download-artifact@v4
118
117
with :
119
- fail-on-cache-miss : true
120
- key : tests-${{ env.id }}-bin
118
+ name : tests-bin-${{ inputs.chip }}-${{ inputs.type }}
121
119
path : |
122
- ~/.arduino/tests/**/build*.tmp/*.bin
123
- ~/.arduino/tests/**/build*.tmp/*.elf
124
- ~/.arduino/tests/**/build*.tmp/*.json
120
+ ~/.arduino/tests
125
121
126
122
- name : Run Tests
127
123
if : ${{ steps.check-tests.outputs.enabled == 'true' }}
Original file line number Diff line number Diff line change @@ -91,15 +91,11 @@ jobs:
91
91
92
92
- name : Get binaries
93
93
if : ${{ steps.check-tests.outputs.enabled == 'true' }}
94
- id : cache-build-binaries
95
- uses : actions/cache/restore@v4
94
+ uses : actions/download-artifact@v4
96
95
with :
97
- fail-on-cache-miss : true
98
- key : tests-${{ env.id }}-bin
96
+ name : tests-bin-${{ inputs.chip }}-${{ inputs.type }}
99
97
path : |
100
- ~/.arduino/tests/**/build*.tmp/*.bin
101
- ~/.arduino/tests/**/build*.tmp/*.elf
102
- ~/.arduino/tests/**/build*.tmp/*.json
98
+ ~/.arduino/tests
103
99
104
100
- name : Run Tests
105
101
if : ${{ steps.check-tests.outputs.enabled == 'true' }}
You can’t perform that action at this time.
0 commit comments