File tree Expand file tree Collapse file tree 3 files changed +20
-20
lines changed Expand file tree Collapse file tree 3 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 1919 # See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows#workflow_dispatch
2020 workflow_dispatch :
2121
22+ env :
23+ SKETCHES_REPORTS_PATH : sketches-reports
24+
2225jobs :
23- build :
26+ compile :
2427 name : ${{ matrix.board.fqbn }}
2528 runs-on : ubuntu-latest
2629
2730 env :
28- SKETCHES_REPORTS_PATH : sketches-reports
2931 # Libraries to install for all boards
3032 UNIVERSAL_LIBRARIES : |
3133 # Install the ArduinoModbus library from the local path
@@ -117,3 +119,18 @@ jobs:
117119 if-no-files-found : error
118120 name : sketches-report-${{ matrix.board.artifact-name-suffix }}
119121 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