-
Notifications
You must be signed in to change notification settings - Fork 4
253 lines (245 loc) · 9.32 KB
/
compile-examples.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
name: Compile Examples
on:
pull_request:
paths:
- ".github/workflows/compile-examples.yml"
- "library.properties"
- "examples/**"
- "linux/**"
- "src/**"
push:
paths:
- ".github/workflows/compile-examples.yml"
- "library.properties"
- "examples/**"
- "linux/**"
- "src/**"
schedule:
# Run every Tuesday at 7:AM GSM +7 to catch breakage caused by changes to external resources (libraries, platforms).
- cron: "0 14 * * TUE"
workflow_dispatch:
repository_dispatch:
jobs:
build:
name: ${{ matrix.board.name }}
runs-on: ubuntu-latest
env:
SKETCHES_REPORTS_PATH: sketches-reports
strategy:
matrix:
board:
- name: "Arduino-MKR1000"
fqbn: "arduino:samd:mkr1000"
platform-name: arduino:samd
sketch-paths: examples/Arduino/Arduino_WiFi_101
libraries: |
- source-path: ./
- name: WiFi101
- name: FlashStorage
- name: Adafruit SleepyDog Library
- name: "Arduino-NANO-33-IoT"
fqbn: "arduino:samd:nano_33_iot"
platform-name: arduino:samd
sketch-paths: examples/Arduino/Arduino_WiFi_NINA
libraries: |
- source-path: ./
- name: WiFiNINA
- name: FlashStorage
- name: Adafruit SleepyDog Library
- name: "Arduino-MKRGSM1400"
fqbn: "arduino:samd:mkrgsm1400"
platform-name: arduino:samd
sketch-paths: examples/Arduino/Arduino_Gsm
libraries: |
- source-path: ./
- name: MKRGSM
- name: FlashStorage
- name: Adafruit SleepyDog Library
- name: "Arduino-MKRNB1500"
fqbn: "arduino:samd:mkrnb1500"
platform-name: arduino:samd
sketch-paths: examples/Arduino/Arduino_NB
libraries: |
- source-path: ./
- name: MKRNB
- name: FlashStorage
- name: Adafruit SleepyDog Library
- name: "Arduino-NANO-RP2040-Connect"
fqbn: "arduino:mbed_nano:nanorp2040connect"
platform-name: arduino:mbed_nano
sketch-paths: examples/Arduino/Arduino_WiFi_NINA
libraries: |
- source-path: ./
- name: WiFiNINA
- name: "Espressif32"
fqbn: "esp32:esp32:esp32"
platform-name: esp32:esp32
sketch-paths: |
- examples/ESP32/ESP32_WiFi_Basic
- examples/ESP32/ESP32_WiFi_SSL
- examples/ESP32/ESP32_PlugNPlay
- examples/ESP32/ESP32_Ethernet
- examples/ESP32/ESP32_Ethernet_SSL
- examples/ESP32/ESP32_Ethernet_SPI
- examples/ESP32/ESP32_Ethernet_SSL_SPI
- examples/ESP32/ESP32_Gsm_Basic
libraries: |
- source-path: ./
- name: TinyGSM
- name: "Espressif32-C3"
fqbn: "esp32:esp32:esp32c3"
platform-name: esp32:esp32
sketch-paths: |
- examples/ESP32/ESP32_WiFi_Basic
- examples/ESP32/ESP32_WiFi_SSL
- examples/ESP32/ESP32_PlugNPlay
- examples/ESP32/ESP32_Ethernet_SPI
- examples/ESP32/ESP32_Ethernet_SSL_SPI
- examples/ESP32/ESP32_Gsm_Basic
libraries: |
- source-path: ./
- name: TinyGSM
- name: "Espressif32-S2"
fqbn: "esp32:esp32:esp32s2"
platform-name: esp32:esp32
sketch-paths: |
- examples/ESP32/ESP32_WiFi_Basic
- examples/ESP32/ESP32_WiFi_SSL
- examples/ESP32/ESP32_PlugNPlay
- examples/ESP32/ESP32_Ethernet_SPI
- examples/ESP32/ESP32_Ethernet_SSL_SPI
- examples/ESP32/ESP32_Gsm_Basic
libraries: |
- source-path: ./
- name: TinyGSM
- name: "Espressif32-S3"
fqbn: "esp32:esp32:esp32s3"
platform-name: esp32:esp32
sketch-paths: |
- examples/ESP32/ESP32_WiFi_Basic
- examples/ESP32/ESP32_WiFi_SSL
- examples/ESP32/ESP32_PlugNPlay
- examples/ESP32/ESP32_Ethernet_SPI
- examples/ESP32/ESP32_Ethernet_SSL_SPI
- examples/ESP32/ESP32_Gsm_Basic
libraries: |
- source-path: ./
- name: TinyGSM
- name: "Espressif8266"
fqbn: "esp8266:esp8266:nodemcuv2"
platform-name: esp8266:esp8266
sketch-paths: examples/ESP8266
libraries: |
- source-path: ./
- name: Preferences
- name: "STMicroelectronics-F0"
fqbn: "STMicroelectronics:stm32:GenF0:pnum=GENERIC_F091RCTX"
platform-name: STMicroelectronics:stm32
sketch-paths: examples/STM32
libraries: |
- source-path: ./
- name: TinyGSM
- name: STM32duino FreeRTOS
- name: "STMicroelectronics-F1"
fqbn: "STMicroelectronics:stm32:GenF1:pnum=GENERIC_F103RETX"
platform-name: STMicroelectronics:stm32
sketch-paths: examples/STM32
libraries: |
- source-path: ./
- name: TinyGSM
- name: STM32duino FreeRTOS
- name: "STMicroelectronics-F2"
fqbn: "STMicroelectronics:stm32:GenF2"
platform-name: STMicroelectronics:stm32
sketch-paths: examples/STM32
libraries: |
- source-path: ./
- name: TinyGSM
- name: STM32duino FreeRTOS
- name: "STMicroelectronics-F3"
fqbn: "STMicroelectronics:stm32:GenF3:pnum=GENERIC_F303RETX"
platform-name: STMicroelectronics:stm32
sketch-paths: examples/STM32
libraries: |
- source-path: ./
- name: TinyGSM
- name: STM32duino FreeRTOS
- name: "STMicroelectronics-F4"
fqbn: "STMicroelectronics:stm32:GenF4"
platform-name: STMicroelectronics:stm32
sketch-paths: examples/STM32
libraries: |
- source-path: ./
- name: TinyGSM
- name: STM32duino FreeRTOS
- name: "STMicroelectronics-F7"
fqbn: "STMicroelectronics:stm32:GenF7"
platform-name: STMicroelectronics:stm32
sketch-paths: examples/STM32
libraries: |
- source-path: ./
- name: TinyGSM
- name: STM32duino FreeRTOS
- name: "Raspberry Pico"
fqbn: "rp2040:rp2040:rpipico"
platform-name: rp2040:rp2040
sketch-paths: examples/Raspberry
libraries: |
- source-path: ./
- name: TinyGSM
# Make board type-specific customizations to the matrix jobs
include:
- board:
platform-name: arduino:samd
platforms: |
# Install SAMD platform via Boards Manager
- name: arduino:samd
- board:
platform-name: arduino:mbed_nano
platforms: |
# Install Mbed Nano platform via Boards Manager
- name: arduino:mbed_nano
- board:
platform-name: esp32:esp32
platforms: |
# Install ESP32 platform via Boards Manager
- name: esp32:esp32
source-url: https://github.com/espressif/arduino-esp32/raw/gh-pages/package_esp32_dev_index.json
- board:
platform-name: esp8266:esp8266
platforms: |
# Install ESP8266 platform via Boards Manager
- name: esp8266:esp8266
source-url: https://arduino.esp8266.com/stable/package_esp8266com_index.json
- board:
platform-name: STMicroelectronics:stm32
platforms: |
# Install STM32 platform via Boards Manager
- name: STMicroelectronics:stm32
source-url: https://github.com/stm32duino/BoardManagerFiles/raw/main/package_stmicroelectronics_index.json
- board:
platform-name: rp2040:rp2040
platforms: |
# Install Raspberry Pico RP2040 platform via Boards Manager
- name: rp2040:rp2040
source-url: https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json
steps:
- uses: actions/checkout@v2
- name: Install platform dependencies
run: pip3 install pyserial
- name: Compile examples
uses: arduino/compile-sketches@v1
with:
platforms: ${{ matrix.platforms }}
fqbn: ${{ matrix.board.fqbn }}
sketch-paths: ${{ matrix.board.sketch-paths }}
libraries: ${{ matrix.board.libraries }}
enable-deltas-report: 'true'
sketches-report-path: ${{ env.SKETCHES_REPORTS_PATH }}
- name: Save memory usage change report as artifact
if: github.event_name == 'pull_request'
uses: actions/upload-artifact@v2
with:
if-no-files-found: error
name: ${{ env.SKETCHES_REPORTS_PATH }}
path: ${{ env.SKETCHES_REPORTS_PATH }}