File tree 2 files changed +19
-28
lines changed
2 files changed +19
-28
lines changed Original file line number Diff line number Diff line change 18
18
workflow_dispatch :
19
19
repository_dispatch :
20
20
21
+ env :
22
+ SKETCHES_REPORTS_PATH : sketches-reports
23
+
21
24
jobs :
22
- build :
25
+ compile :
23
26
name : ${{ matrix.board.fqbn }}
24
27
runs-on : ubuntu-latest
25
28
26
- env :
27
- SKETCHES_REPORTS_PATH : sketches-reports
28
-
29
29
strategy :
30
30
fail-fast : false
31
31
@@ -135,3 +135,18 @@ jobs:
135
135
if-no-files-found : error
136
136
path : ${{ env.SKETCHES_REPORTS_PATH }}
137
137
name : sketches-report-${{ matrix.board.artifact-name-suffix }}
138
+
139
+ report :
140
+ needs : compile
141
+ if : github.event_name == 'pull_request'
142
+ runs-on : ubuntu-latest
143
+
144
+ steps :
145
+ - name : Download sketches reports artifacts
146
+ uses : actions/download-artifact@v4
147
+ with :
148
+ path : ${{ env.SKETCHES_REPORTS_PATH }}
149
+
150
+ - uses : arduino/report-size-deltas@v1
151
+ with :
152
+ sketches-reports-source : ${{ env.SKETCHES_REPORTS_PATH }}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments