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
Copy file name to clipboardExpand all lines: .github/workflows/compile-examples.yml
+14-10
Original file line number
Diff line number
Diff line change
@@ -26,8 +26,8 @@ jobs:
26
26
# sketch paths to compile (recursive) for all boards
27
27
UNIVERSAL_SKETCH_PATHS: |
28
28
- libraries/AnalogWave
29
-
- libraries/Arduino_CAN/CANRead
30
-
- libraries/Arduino_CAN/CANWrite
29
+
- libraries/Arduino_CAN/examples/CANRead
30
+
- libraries/Arduino_CAN/examples/CANWrite
31
31
- libraries/Arduino_FreeRTOS
32
32
- libraries/EEPROM
33
33
- libraries/RTC
@@ -38,15 +38,15 @@ jobs:
38
38
39
39
matrix:
40
40
board: [
41
-
{"fqbn": "arduino:renesas:portenta_c33"},
42
-
{"fqbn": "arduino:renesas:minima"},
43
-
{"fqbn": "arduino:renesas:unor4wifi"},
41
+
{"fqbn": "arduino-git:renesas:portenta_c33"},
42
+
{"fqbn": "arduino-git:renesas:minima"},
43
+
{"fqbn": "arduino-git:renesas:unor4wifi"},
44
44
]
45
45
46
46
# make board type-specific customizations to the matrix jobs
47
47
include:
48
48
- board:
49
-
fqbn: "arduino:renesas:portenta_c33"
49
+
fqbn: "arduino-git:renesas:portenta_c33"
50
50
additional-sketch-paths: |
51
51
- libraries/WiFi
52
52
- libraries/UsbMsd
@@ -55,17 +55,21 @@ jobs:
55
55
- libraries/SSLClient
56
56
- libraries/SE05X
57
57
- libraries/Ethernet
58
-
- libraries/Arduino_CAN/CAN1Read
59
-
- libraries/Arduino_CAN/CAN1Write
58
+
- libraries/Arduino_CAN/examples/CAN1Read
59
+
- libraries/Arduino_CAN/examples/CAN1Write
60
60
- board:
61
-
fqbn: "arduino:renesas:unor4wifi"
61
+
fqbn: "arduino-git:renesas:unor4wifi"
62
62
additional-sketch-paths: |
63
63
- libraries/WiFiS3
64
64
- libraries/Arduino_LED_Matrix
65
65
66
66
steps:
67
67
- name: Checkout repository
68
68
uses: actions/checkout@v2
69
+
with:
70
+
submodules: recursive
71
+
token: ${{ secrets.PRIVATE_SUBMODULES_CLONE }}
72
+
fetch-depth: 0
69
73
70
74
# 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