File tree 3 files changed +20
-20
lines changed
3 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 19
19
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows#workflow_dispatch
20
20
workflow_dispatch :
21
21
22
+ env :
23
+ SKETCHES_REPORTS_PATH : sketches-reports
24
+
22
25
jobs :
23
- build :
26
+ compile :
24
27
name : ${{ matrix.board.fqbn }}
25
28
runs-on : ubuntu-latest
26
29
27
30
env :
28
- SKETCHES_REPORTS_PATH : sketches-reports
29
31
# Libraries to install for all boards
30
32
UNIVERSAL_LIBRARIES : |
31
33
# Install the ArduinoModbus library from the local path
@@ -117,3 +119,18 @@ jobs:
117
119
if-no-files-found : error
118
120
name : sketches-report-${{ matrix.board.artifact-name-suffix }}
119
121
path : ${{ env.SKETCHES_REPORTS_PATH }}
122
+
123
+ report :
124
+ needs : compile
125
+ if : github.event_name == 'pull_request'
126
+ runs-on : ubuntu-latest
127
+
128
+ steps :
129
+ - name : Download sketches reports artifacts
130
+ uses : actions/download-artifact@v4
131
+ with :
132
+ path : ${{ env.SKETCHES_REPORTS_PATH }}
133
+
134
+ - uses : arduino/report-size-deltas@v1
135
+ with :
136
+ sketches-reports-source : ${{ env.SKETCHES_REPORTS_PATH }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ .idea /
You can’t perform that action at this time.
0 commit comments