Skip to content

Commit 2b822a5

Browse files
committed
CI: Add west blobs fetch instead of copy api directory
Since ArduinoCore-API has been made into a blob, the CI procedure will be modified. Signed-off-by: TOKITA Hiroshi <[email protected]>
1 parent a1466c1 commit 2b822a5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Initialize
3939
run: |
4040
git clone https://github.com/arduino/ArduinoCore-API.git $MODULE_PATH/../ArduinoCore-API
41-
cp -rfp $MODULE_PATH/../ArduinoCore-API/api $MODULE_PATH/cores/arduino/
41+
west blobs fetch arduinocore-zephyr
4242
4343
- name: Build fade
4444
run: |

samples/blinky_arduino/src/main.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ void loop() {
1616
delay(SLEEP_TIME_MS);
1717
digitalWrite(LED_BUILTIN, LOW);
1818
delay(SLEEP_TIME_MS);
19-
}
19+
20+
makeWord(1);
21+
}

0 commit comments

Comments
 (0)