Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 23 additions & 13 deletions .github/workflows/compile-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
UNIVERSAL_LIBRARIES: |
- source-path: ./
- name: Arduino_SecureElement
- source-url: https://github.com/arduino/Arduino_CloudUtils.git
- source-url: https://github.com/arduino-libraries/Arduino_CloudUtils.git
version: 0.0.1
# sketch paths to compile (recursive) for all boards
UNIVERSAL_SKETCH_PATHS: |
Expand All @@ -33,9 +33,6 @@ jobs:

matrix:
board:
- fqbn: arduino:samd:mkr1000
type: mkr1000
artifact-name-suffix: arduino-samd-mkr1000
- fqbn: arduino:samd:mkrwifi1010
type: nina
artifact-name-suffix: arduino-samd-mkrwifi1010
Expand All @@ -54,9 +51,6 @@ jobs:
- fqbn: arduino:mbed_portenta:envie_m7
type: mbed_portenta
artifact-name-suffix: arduino-mbed_portenta-envie_m7
- fqbn: esp32:esp32:esp32
type: esp32
artifact-name-suffix: esp32-esp32-esp32
- fqbn: arduino:mbed_nano:nanorp2040connect
type: nina
artifact-name-suffix: arduino-mbed_nano-nanorp2040connect
Expand All @@ -75,12 +69,28 @@ jobs:
- fqbn: arduino:renesas_uno:unor4wifi
type: renesas_uno
artifact-name-suffix: arduino-renesas_uno-unor4wifi
- fqbn: arduino:esp32:nano_nora
type: arduino_esp32
artifact-name-suffix: arduino-esp32-nano_nora
- fqbn: arduino:mbed_edge:edge_control
type: mbed_edge
artifact-name-suffix: arduino-mbed_edge-edge_control

# make board type-specific customizations to the matrix jobs
include:
- board:
type: nina
libraries: |
- name: WiFiNINA

- board:
type: wan
libraries: |
- name: MKRWAN

- board:
type: gsm
libraries: |
- name: MKRGSM

- board:
type: nb
libraries: |
- name: MKRNB

steps:
- name: Checkout
Expand Down
Loading