Skip to content

Commit dfd0378

Browse files
authored
Fix regression re report-size-deltas after updating actions/upload-artifact. (#423)
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 88fd695 commit dfd0378

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

.github/workflows/compile-examples.yml

+18-1
Original file line numberDiff line numberDiff line change
@@ -40,38 +40,55 @@ jobs:
4040
board:
4141
- fqbn: arduino:samd:mkr1000
4242
type: mkr1000
43+
artifact-name-suffix: arduino-samd-mkr1000
4344
- fqbn: arduino:samd:mkrwifi1010
4445
type: nina
46+
artifact-name-suffix: arduino-samd-mkrwifi1010
4547
- fqbn: arduino:samd:nano_33_iot
4648
type: nina
49+
artifact-name-suffix: arduino-samd-nano_33_iot
4750
- fqbn: arduino:samd:mkrwan1300
4851
type: wan
52+
artifact-name-suffix: arduino-samd-mkrwan1300
4953
- fqbn: arduino:samd:mkrgsm1400
5054
type: gsm
55+
artifact-name-suffix: arduino-samd-mkrgsm1400
5156
- fqbn: arduino:samd:mkrnb1500
5257
type: nb
58+
artifact-name-suffix: arduino-samd-mkrnb1500
5359
- fqbn: arduino:mbed_portenta:envie_m7
5460
type: mbed_portenta
61+
artifact-name-suffix: arduino-mbed_portenta-envie_m7
5562
- fqbn: esp8266:esp8266:huzzah
5663
type: esp8266
64+
artifact-name-suffix: esp8266-esp8266-huzzah
5765
- fqbn: esp32:esp32:esp32
5866
type: esp32
67+
artifact-name-suffix: esp32-esp32-esp32
5968
- fqbn: arduino:mbed_nano:nanorp2040connect
6069
type: nina
70+
artifact-name-suffix: arduino-mbed_nano-nanorp2040connect
6171
- fqbn: arduino:mbed_nicla:nicla_vision
6272
type: mbed_nicla
73+
artifact-name-suffix: arduino-mbed_nicla-nicla_vision
6374
- fqbn: arduino:mbed_opta:opta
6475
type: mbed_opta
76+
artifact-name-suffix: arduino-mbed_opta-opta
6577
- fqbn: arduino:mbed_giga:giga
6678
type: mbed_giga
79+
artifact-name-suffix: arduino-mbed_giga-giga
6780
- fqbn: arduino:renesas_portenta:portenta_c33
6881
type: renesas_portenta
82+
artifact-name-suffix: arduino-renesas_portenta-portenta_c33
6983
- fqbn: arduino:renesas_uno:unor4wifi
7084
type: renesas_uno
85+
artifact-name-suffix: arduino-renesas_uno-unor4wifi
7186
- fqbn: arduino:esp32:nano_nora
7287
type: arduino_esp32
88+
artifact-name-suffix: arduino-esp32-nano_nora
7389
- fqbn: arduino:mbed_edge:edge_control
7490
type: mbed_edge
91+
artifact-name-suffix: arduino-mbed_edge-edge_control
7592

7693

7794
# make board type-specific customizations to the matrix jobs
@@ -279,5 +296,5 @@ jobs:
279296
if: github.event_name == 'pull_request'
280297
uses: actions/upload-artifact@v4
281298
with:
282-
name: ${{ env.SKETCHES_REPORTS_PATH }}
299+
name: sketches-report-${{ matrix.board.artifact-name-suffix }}
283300
path: ${{ env.SKETCHES_REPORTS_PATH }}

0 commit comments

Comments
 (0)