File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 2222 runs-on : ubuntu-latest
2323
2424 env :
25+ SKETCHES_REPORTS_PATH : sketches-reports
2526 # Libraries to install for all boards
2627 UNIVERSAL_LIBRARIES : |
2728 # Install the ArduinoModbus library from the local path
7879 sketch-paths : |
7980 ${{ env.UNIVERSAL_SKETCH_PATHS }}
8081 ${{ matrix.nina-sketch-paths }}
82+ enable-deltas-report : true
83+ sketches-report-path : ${{ env.SKETCHES_REPORTS_PATH }}
84+
85+ - name : Save memory usage change report as artifact
86+ uses : actions/upload-artifact@v2
87+ with :
88+ name : ${{ env.SKETCHES_REPORTS_PATH }}
89+ path : ${{ env.SKETCHES_REPORTS_PATH }}
Original file line number Diff line number Diff line change 1+ name : Report Size Deltas
2+
3+ on :
4+ schedule :
5+ - cron : " */5 * * * *"
6+ # See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows#workflow_dispatch
7+ workflow_dispatch :
8+
9+ jobs :
10+ report :
11+ runs-on : ubuntu-latest
12+
13+ steps :
14+ - name : Comment size deltas reports to PRs
15+ uses : arduino/report-size-deltas@main
16+ with :
17+ # The name of the workflow artifact created by the "Compile Examples" workflow
18+ sketches-reports-source : sketches-reports
You can’t perform that action at this time.
0 commit comments