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
Update Portenta platform in Compile Examples CI workflow
The beta phase `arduino-beta:mbed` boards platform of the Portenta H7 has been deprecated, which will cause platform
installation during the compilation check CI to fail if the old name is used.
Copy file name to clipboardExpand all lines: .github/workflows/compile-examples.yml
+11-11
Original file line number
Diff line number
Diff line change
@@ -37,10 +37,10 @@ jobs:
37
37
platform-name: arduino:samd
38
38
- fqbn: "arduino:samd:mkrwan1310"
39
39
platform-name: arduino:samd
40
-
- fqbn: "arduino-beta:mbed:envie_m7"
41
-
platform-name: arduino-beta:mbed
42
-
- fqbn: "arduino-beta:mbed:envie_m4"
43
-
platform-name: arduino-beta:mbed
40
+
- fqbn: "arduino:mbed:envie_m7"
41
+
platform-name: arduino:mbed
42
+
- fqbn: "arduino:mbed:envie_m4"
43
+
platform-name: arduino:mbed
44
44
- fqbn: "esp8266:esp8266:huzzah"
45
45
platform-name: esp8266:esp8266
46
46
@@ -52,13 +52,13 @@ jobs:
52
52
# Install Arduino SAMD Boards via Boards Manager
53
53
- name: arduino:samd
54
54
- board:
55
-
platform-name: arduino-beta:mbed
55
+
platform-name: arduino:mbed
56
56
platforms: |
57
57
# Install Arduino mbed-Enabled Boards via Boards Manager for the toolchain
58
-
- name: arduino-beta:mbed
58
+
- name: arduino:mbed
59
59
# Overwrite the Arduino mbed-Enabled Boards release version with version from the tip of the default branch (located in local path because of the need to first install ArduinoCore-API)
60
60
- source-path: extras/ArduinoCore-mbed
61
-
name: arduino-beta:mbed
61
+
name: arduino:mbed
62
62
- board:
63
63
platform-name: esp8266:esp8266
64
64
platforms: |
@@ -74,7 +74,7 @@ jobs:
74
74
# It's necessary to checkout the platform before installing it so that the ArduinoCore-API dependency can be added
75
75
- name: Checkout ArduinoCore-mbed
76
76
# this step only needed when the Arduino mbed-Enabled Boards platform sourced from the repository is being used
0 commit comments