Skip to content

Commit f2985db

Browse files
authored
Fix regression re report-size-deltas after updating actions/upload-artifact. (#63)
For more information see https://github.com/arduino/report-size-deltas/blob/main/docs/FAQ.md#size-deltas-report-workflow-triggered-by-schedule-event .
1 parent b60e216 commit f2985db

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/compile-examples.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -35,42 +35,52 @@ jobs:
3535
platforms: |
3636
- name: arduino:samd
3737
type: nano
38+
artifact-name-suffix: arduino-samd-nano_33_iot
3839
- fqbn: arduino:samd:mkr1000
3940
platforms: |
4041
- name: arduino:samd
4142
type: mkr
43+
artifact-name-suffix: arduino-samd-mkr1000
4244
- fqbn: arduino:samd:mkrzero
4345
platforms: |
4446
- name: arduino:samd
4547
type: mkr
48+
artifact-name-suffix: arduino-samd-mkrzero
4649
- fqbn: arduino:samd:mkrwifi1010
4750
platforms: |
4851
- name: arduino:samd
4952
type: mkr
53+
artifact-name-suffix: arduino-samd-mkrwifi1010
5054
- fqbn: arduino:samd:mkrfox1200
5155
platforms: |
5256
- name: arduino:samd
5357
type: mkr
58+
artifact-name-suffix: arduino-samd-mkrfox1200
5459
- fqbn: arduino:samd:mkrwan1300
5560
platforms: |
5661
- name: arduino:samd
5762
type: mkr
63+
artifact-name-suffix: arduino-samd-mkrwan1300
5864
- fqbn: arduino:samd:mkrwan1310
5965
platforms: |
6066
- name: arduino:samd
6167
type: mkr
68+
artifact-name-suffix: arduino-samd-mkrwan1310
6269
- fqbn: arduino:samd:mkrgsm1400
6370
platforms: |
6471
- name: arduino:samd
6572
type: mkr
73+
artifact-name-suffix: arduino-samd-mkrgsm1400
6674
- fqbn: arduino:samd:mkrnb1500
6775
platforms: |
6876
- name: arduino:samd
6977
type: mkr
78+
artifact-name-suffix: arduino-samd-mkrnb1500
7079
- fqbn: arduino:samd:mkrvidor4000
7180
platforms: |
7281
- name: arduino:samd
7382
type: mkr
83+
artifact-name-suffix: arduino-samd-mkrvidor4000
7484
- fqbn: arduino:mbed_portenta:envie_m7:target_core=cm4
7585
platforms: |
7686
- name: arduino:mbed_portenta
@@ -79,6 +89,7 @@ jobs:
7989
platforms: |
8090
- name: arduino:mbed_portenta
8191
type: mkr
92+
artifact-name-suffix: arduino-mbed_portenta-envie_m7
8293

8394
# make board type-specific customizations to the matrix jobs
8495
include:
@@ -123,4 +134,4 @@ jobs:
123134
with:
124135
if-no-files-found: error
125136
path: ${{ env.SKETCHES_REPORTS_PATH }}
126-
name: ${{ env.SKETCHES_REPORTS_PATH }}
137+
name: sketches-report-${{ matrix.board.artifact-name-suffix }}

0 commit comments

Comments
 (0)