File tree 3 files changed +20
-20
lines changed
3 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 19
19
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows#workflow_dispatch
20
20
workflow_dispatch :
21
21
22
- env :
23
- SKETCHES_REPORTS_PATH : sketches-reports
24
-
25
22
jobs :
26
- compile :
23
+ build :
27
24
name : ${{ matrix.board.fqbn }}
28
25
runs-on : ubuntu-latest
29
26
30
27
env :
28
+ SKETCHES_REPORTS_PATH : sketches-reports
31
29
# Libraries to install for all boards
32
30
UNIVERSAL_LIBRARIES : |
33
31
# Install the ArduinoModbus library from the local path
@@ -119,18 +117,3 @@ jobs:
119
117
if-no-files-found : error
120
118
name : sketches-report-${{ matrix.board.artifact-name-suffix }}
121
119
path : ${{ env.SKETCHES_REPORTS_PATH }}
122
-
123
- report :
124
- needs : compile
125
- if : github.event_name == 'pull_request'
126
- runs-on : ubuntu-latest
127
-
128
- steps :
129
- - name : Download sketches reports artifacts
130
- uses : actions/download-artifact@v4
131
- with :
132
- path : ${{ env.SKETCHES_REPORTS_PATH }}
133
-
134
- - uses : arduino/report-size-deltas@v1
135
- with :
136
- sketches-reports-source : ${{ 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@v1
16
+ with :
17
+ # The name of the workflow artifact created by the "Compile Examples" workflow
18
+ sketches-reports-source : sketches-reports
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments