Skip to content

Commit 75044f3

Browse files
authored
Fix Portenta C33 job configuration in "Compile Examples" CI workflow
Previously the "Compile Examples" GitHub Actions workflow was configured to install the boards platform dependency of the "Portenta C33" board via a package index published for the purposes of beta testing during the initial development of the "Arduino Renesas Portenta Boards" platform. That package index was later deleted, which caused the job to fail: ``` Downloading index: package_renesas_index.json 0 B / ? 0.00% Downloading index: package_renesas_index.json Server responded with: 404 Not Found Some indexes could not be updated. ``` The "Arduino Renesas Portenta Boards" platform is now part of the primary package index so the job can be restored to a working state. Since that time, the board ID for the "Portenta C33" board was changed to `portenta_c33` so the FQBN of the board is also updated here.
1 parent f5be29c commit 75044f3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/compile-examples.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,9 @@ jobs:
5252
platforms: |
5353
- name: arduino:mbed_portenta
5454
sketch-paths:
55-
- fqbn: arduino:renesas:portenta_h33
55+
- fqbn: arduino:renesas_portenta:portenta_c33
5656
platforms: |
57-
- name: arduino:renesas
58-
source-url: https://downloads.arduino.cc/packages/package_renesas_index.json
57+
- name: arduino:renesas_portenta
5958
sketch-paths: |
6059
- examples/C33-Low-Power
6160

0 commit comments

Comments
 (0)