Skip to content

Commit 7081d36

Browse files
authored
Merge pull request #8 from arduino-libraries/fix-ci
compile-examples: add dependency and remove unsupported boards
2 parents 7e1bfeb + 6cf548a commit 7081d36

File tree

1 file changed

+23
-13
lines changed

1 file changed

+23
-13
lines changed

.github/workflows/compile-examples.yml

Lines changed: 23 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
UNIVERSAL_LIBRARIES: |
2222
- source-path: ./
2323
- name: Arduino_SecureElement
24-
- source-url: https://github.com/arduino/Arduino_CloudUtils.git
24+
- source-url: https://github.com/arduino-libraries/Arduino_CloudUtils.git
2525
version: 0.0.1
2626
# sketch paths to compile (recursive) for all boards
2727
UNIVERSAL_SKETCH_PATHS: |
@@ -33,9 +33,6 @@ jobs:
3333

3434
matrix:
3535
board:
36-
- fqbn: arduino:samd:mkr1000
37-
type: mkr1000
38-
artifact-name-suffix: arduino-samd-mkr1000
3936
- fqbn: arduino:samd:mkrwifi1010
4037
type: nina
4138
artifact-name-suffix: arduino-samd-mkrwifi1010
@@ -54,9 +51,6 @@ jobs:
5451
- fqbn: arduino:mbed_portenta:envie_m7
5552
type: mbed_portenta
5653
artifact-name-suffix: arduino-mbed_portenta-envie_m7
57-
- fqbn: esp32:esp32:esp32
58-
type: esp32
59-
artifact-name-suffix: esp32-esp32-esp32
6054
- fqbn: arduino:mbed_nano:nanorp2040connect
6155
type: nina
6256
artifact-name-suffix: arduino-mbed_nano-nanorp2040connect
@@ -75,12 +69,28 @@ jobs:
7569
- fqbn: arduino:renesas_uno:unor4wifi
7670
type: renesas_uno
7771
artifact-name-suffix: arduino-renesas_uno-unor4wifi
78-
- fqbn: arduino:esp32:nano_nora
79-
type: arduino_esp32
80-
artifact-name-suffix: arduino-esp32-nano_nora
81-
- fqbn: arduino:mbed_edge:edge_control
82-
type: mbed_edge
83-
artifact-name-suffix: arduino-mbed_edge-edge_control
72+
73+
# make board type-specific customizations to the matrix jobs
74+
include:
75+
- board:
76+
type: nina
77+
libraries: |
78+
- name: WiFiNINA
79+
80+
- board:
81+
type: wan
82+
libraries: |
83+
- name: MKRWAN
84+
85+
- board:
86+
type: gsm
87+
libraries: |
88+
- name: MKRGSM
89+
90+
- board:
91+
type: nb
92+
libraries: |
93+
- name: MKRNB
8494
8595
steps:
8696
- name: Checkout

0 commit comments

Comments
 (0)