File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 21
21
build :
22
22
runs-on : ubuntu-latest
23
23
24
+ env :
25
+ SKETCHES_REPORTS_PATH : sketches-reports
26
+
24
27
strategy :
25
28
fail-fast : false
26
29
52
55
- name: SD
53
56
sketch-paths : |
54
57
- examples
58
+ enable-deltas-report : true
59
+ sketches-report-path : ${{ env.SKETCHES_REPORTS_PATH }}
60
+
61
+ - name : Save memory usage change report as artifact
62
+ uses : actions/upload-artifact@v2
63
+ with :
64
+ name : ${{ env.SKETCHES_REPORTS_PATH }}
65
+ 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