@@ -38,19 +38,26 @@ jobs:
38
38
- libraries/RTC/examples/Test_RTC
39
39
- libraries/SoftwareSerial
40
40
- libraries/WDT
41
+ SKETCHES_REPORTS_PATH : sketches-reports
41
42
42
43
strategy :
43
44
fail-fast : false
44
45
45
46
matrix :
46
- board : [
47
- {"fqbn": "arduino:renesas_portenta:portenta_c33"},
48
- {"fqbn": "arduino:renesas_uno:minima"},
49
- {"fqbn": "arduino:renesas_uno:unor4wifi"},
50
- {"fqbn": "arduino-git:renesas:portenta_c33"},
51
- {"fqbn": "arduino-git:renesas:minima"},
52
- {"fqbn": "arduino-git:renesas:unor4wifi"},
53
- ]
47
+ board :
48
+ - fqbn : arduino:renesas_portenta:portenta_c33
49
+ id : c33
50
+ - fqbn : arduino:renesas_uno:minima
51
+ id : minima
52
+ - fqbn : arduino:renesas_uno:unor4wifi
53
+ id : wifi
54
+ - fqbn : arduino-git:renesas:portenta_c33
55
+ id : git_c33
56
+ - fqbn : arduino-git:renesas:minima
57
+ id : git_minima
58
+ - fqbn : arduino-git:renesas:unor4wifi
59
+ id : git_wifi
60
+
54
61
55
62
# make board type-specific customizations to the matrix jobs
56
63
include :
@@ -173,9 +180,10 @@ jobs:
173
180
enable-deltas-report : ' false'
174
181
verbose : ' true'
175
182
github-token : ${{ secrets.GITHUB_TOKEN }}
183
+ sketches-report-path : ${{ env.SKETCHES_REPORTS_PATH }}
176
184
177
185
- name : Save memory usage change report as artifact
178
186
uses : actions/upload-artifact@v4
179
187
with :
180
- name : sketches-reports
181
- path : sketches-reports
188
+ path : ${{ env.SKETCHES_REPORTS_PATH }}
189
+ name : ${{ env.SKETCHES_REPORTS_PATH }}-${{ matrix.board.id }}
0 commit comments