Skip to content

Commit fdbc6ba

Browse files
committed
Add new boards to sketch compilation workflow
The repository infrastructure includes a GitHub Actions workflow that compiles the examples for significant official Arduino boards. This provides a automated "smoke test" to easily get some basic validation of the sketches. Since the time the workflow was created, several new official boards have been released. Some of these boards are significantly different from the boards the workflow was compiling the examples for, which meant the workflow was not providing adequate coverage for the new boards. The workflow is hereby configured to also compile the examples for the significant new boards.
1 parent fdbfc5b commit fdbc6ba

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

Diff for: .github/workflows/compile-examples.yml

+30
Original file line numberDiff line numberDiff line change
@@ -120,18 +120,48 @@ jobs:
120120
starter-kit: false
121121
tone: true
122122
a5: true
123+
- fqbn: arduino:esp32:nano_nora
124+
usb: false
125+
serial1: true
126+
starter-kit: false
127+
tone: true
128+
a5: true
123129
- fqbn: arduino:megaavr:uno2018:mode=off
124130
usb: false
125131
serial1: true
126132
starter-kit: false
127133
tone: true
128134
a5: true
135+
- fqbn: arduino:renesas_uno:minima
136+
usb: true
137+
serial1: true
138+
starter-kit: false
139+
tone: true
140+
a5: true
141+
- fqbn: arduino:renesas_uno:unor4wifi
142+
usb: true
143+
serial1: true
144+
starter-kit: false
145+
tone: true
146+
a5: true
147+
- fqbn: arduino:renesas_portenta:portenta_c33
148+
usb: true
149+
serial1: true
150+
starter-kit: false
151+
tone: true
152+
a5: true
129153
- fqbn: arduino:samd:mkrzero
130154
usb: true
131155
serial1: true
132156
starter-kit: false
133157
tone: true
134158
a5: true
159+
- fqbn: arduino:mbed_giga:giga
160+
usb: false
161+
serial1: true
162+
starter-kit: false
163+
tone: true
164+
a5: true
135165
- fqbn: arduino:mbed_nano:nano33ble
136166
usb: false
137167
serial1: true

0 commit comments

Comments
 (0)