File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 2424 build :
2525 runs-on : ubuntu-latest
2626
27+ env :
28+ SKETCHES_REPORTS_PATH : sketches-reports
29+
2730 strategy :
2831 fail-fast : false
2932
5659 # See: https://github.com/arduino/compile-sketches#libraries
5760 sketch-paths : |
5861 - ./examples/
62+ enable-deltas-report : true
63+ sketches-report-path : ${{ env.SKETCHES_REPORTS_PATH }}
64+
65+ - name : Save memory usage change report as artifact
66+ uses : actions/upload-artifact@v2
67+ with :
68+ name : ${{ env.SKETCHES_REPORTS_PATH }}
69+ 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+ # See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows#repository_dispatch
9+ repository_dispatch :
10+
11+ jobs :
12+ report :
13+ runs-on : ubuntu-latest
14+
15+ steps :
16+ # See: https://github.com/arduino/actions/blob/master/libraries/report-size-deltas/README.md
17+ - name : Comment size deltas reports to PRs
18+ uses : arduino/report-size-deltas@main
19+ with :
20+ # The name of the workflow artifact created by the "Compile Examples" workflow
21+ sketches-reports-source : sketches-reports
You can’t perform that action at this time.
0 commit comments