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
+16-6Lines changed: 16 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,9 @@ jobs:
32
32
- libraries/Arduino_CAN/examples/CANWrite
33
33
- libraries/Arduino_FreeRTOS
34
34
- libraries/EEPROM
35
-
- libraries/RTC
35
+
- libraries/RTC/examples/RTC_AutomaticExample
36
+
- libraries/RTC/examples/RTC_PeriodicExample
37
+
- libraries/RTC/examples/Test_RTC
36
38
- libraries/SoftwareSerial
37
39
38
40
strategy:
@@ -62,6 +64,8 @@ jobs:
62
64
- libraries/Ethernet
63
65
- libraries/Arduino_CAN/examples/CAN1Read
64
66
- libraries/Arduino_CAN/examples/CAN1Write
67
+
- libraries/RTC/examples/RTC_NTPSync
68
+
- libraries/RTC/examples/RTC_Alarm
65
69
- board:
66
70
fqbn: "arduino-git:renesas:portenta_c33"
67
71
additional-sketch-paths: |
@@ -74,6 +78,8 @@ jobs:
74
78
- libraries/Ethernet
75
79
- libraries/Arduino_CAN/examples/CAN1Read
76
80
- libraries/Arduino_CAN/examples/CAN1Write
81
+
- libraries/RTC/examples/RTC_NTPSync
82
+
- libraries/RTC/examples/RTC_Alarm
77
83
- board:
78
84
fqbn: "arduino:renesas_uno:unor4wifi"
79
85
additional-sketch-paths: |
@@ -85,9 +91,7 @@ jobs:
85
91
86
92
steps:
87
93
- name: Checkout repository
88
-
uses: actions/checkout@v2
89
-
with:
90
-
submodules: recursive
94
+
uses: actions/checkout@v3
91
95
92
96
# 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
93
97
- name: Checkout ArduinoCore-API
@@ -111,6 +115,12 @@ jobs:
111
115
repository: arduino/arduino-examples
112
116
path: extras
113
117
118
+
- name: Submodule update
119
+
run: git submodule init && git submodule update
120
+
121
+
- name: List files in core
122
+
run: tree extras/
123
+
114
124
- name: Compile examples
115
125
uses: arduino/compile-sketches@main
116
126
with:
@@ -148,8 +158,8 @@ jobs:
148
158
sketch-paths: |
149
159
${{ env.UNIVERSAL_SKETCH_PATHS }}
150
160
${{ matrix.additional-sketch-paths }}
151
-
enable-deltas-report: 'true'
152
-
verbose: 'false'
161
+
enable-deltas-report: 'false'
162
+
verbose: 'true'
153
163
github-token: ${{ secrets.GITHUB_TOKEN }}
154
164
155
165
- name: Save memory usage change report as artifact
0 commit comments