File tree 2 files changed +32
-0
lines changed
2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 24
24
build :
25
25
runs-on : ubuntu-latest
26
26
27
+ env :
28
+ SKETCHES_REPORTS_PATH : sketches-reports
29
+
27
30
strategy :
28
31
fail-fast : false
29
32
56
59
# See: https://github.com/arduino/compile-sketches#libraries
57
60
sketch-paths : |
58
61
- ./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