@@ -47,16 +47,10 @@ jobs:
47
47
matrix :
48
48
board :
49
49
- fqbn : arduino:mbed_portenta:envie_m7
50
- platforms : |
51
- - name: arduino:mbed_portenta
52
50
artifact-name-suffix : arduino-mbed_portenta-envie_m7
53
51
- fqbn : arduino:renesas_portenta:portenta_c33
54
- platforms : |
55
- - name: arduino:renesas_portenta
56
52
artifact-name-suffix : arduino-renesas_portenta-portenta_c33
57
53
- fqbn : arduino:mbed_opta:opta
58
- platforms : |
59
- - name: arduino:mbed_opta
60
54
artifact-name-suffix : arduino-mbed_opta-opta
61
55
62
56
steps :
@@ -67,16 +61,20 @@ jobs:
67
61
uses : arduino/compile-sketches@v1
68
62
with :
69
63
github-token : ${{ secrets.GITHUB_TOKEN }}
70
- cli-compile-flags : --profile ${{ matrix.board.fqbn }}
71
64
sketch-paths : |
72
65
${{ env.UNIVERSAL_SKETCH_PATHS }}
73
66
${{ matrix.board.additional-sketch-paths }}
67
+ fqbn : ${{ matrix.board.fqbn }}
68
+ cli-compile-flags : |
69
+ - --profile
70
+ - ${{ matrix.board.fqbn }}
74
71
enable-deltas-report : true
75
72
sketches-report-path : ${{ env.SKETCHES_REPORTS_PATH }}
73
+ verbose : false
76
74
77
75
- name : Save sketches report as workflow artifact
78
76
uses : actions/upload-artifact@v4
79
77
with :
80
78
if-no-files-found : error
81
79
name : sketches-report-${{ matrix.board.artifact-name-suffix }}
82
- path : ${{ env.SKETCHES_REPORTS_PATH }}
80
+ path : ${{ env.SKETCHES_REPORTS_PATH }}
0 commit comments