File tree 2 files changed +27
-0
lines changed
2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 22
22
runs-on : ubuntu-latest
23
23
24
24
env :
25
+ SKETCHES_REPORTS_PATH : sketches-reports
25
26
# Libraries to install for all boards
26
27
UNIVERSAL_LIBRARIES : |
27
28
# Install the ArduinoModbus library from the local path
78
79
sketch-paths : |
79
80
${{ env.UNIVERSAL_SKETCH_PATHS }}
80
81
${{ 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