You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# sketch paths to compile (recursive) for all boards
11
+
UNIVERSAL_SKETCH_PATHS: '"libraries/Scheduler"'
12
+
13
+
strategy:
14
+
fail-fast: false
15
+
16
+
matrix:
17
+
board: [
18
+
{"fqbn": "arduino-beta:mbed:nano33ble"},
19
+
{"fqbn": "arduino-beta:mbed:envie_m4"},
20
+
{"fqbn": "arduino-beta:mbed:envie_m7"}
21
+
]
22
+
23
+
# make board type-specific customizations to the matrix jobs
24
+
include:
25
+
# normal boards
26
+
- board:
27
+
fqbn: "arduino-beta:mbed:nano33ble"
28
+
additional-sketch-paths: '"libraries/PDM"'
29
+
- board:
30
+
fqbn: "arduino-beta:mbed:envie_m4"
31
+
additional-sketch-paths: '"libraries/doom"'
32
+
- board:
33
+
fqbn: "arduino-beta:mbed:envie_m7"
34
+
additional-sketch-paths: '"libraries/doom"'
35
+
36
+
steps:
37
+
- name: Checkout repository
38
+
uses: actions/checkout@v2
39
+
40
+
# The source files are in a subfolder of the ArduinoCore-API repository, so it's not possible to clone it directly to the final destination in the core
0 commit comments