File tree 1 file changed +13
-5
lines changed
1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -4,16 +4,24 @@ on: [push, pull_request]
4
4
5
5
jobs :
6
6
build :
7
- runs-on : ubuntu-24.04
8
- container : zephyrprojectrtos/ci:latest
9
- env :
10
- CMAKE_PREFIX_PATH : /opt/toolchains
7
+ runs-on : ubuntu-latest
11
8
steps :
12
9
- name : Checkout
13
10
uses : actions/checkout@v4
14
11
with :
15
12
path : Arduino-Zephyr-API
16
13
14
+ - name : Set up Python
15
+ uses : actions/setup-python@v5
16
+ with :
17
+ python-version : 3.11
18
+
19
+ - name : Setup Zephyr project
20
+ uses : zephyrproject-rtos/action-zephyr-setup@v1
21
+ with :
22
+ app-path : zephyr
23
+ toolchains : all
24
+
17
25
- name : Initialize
18
26
working-directory : Arduino-Zephyr-API
19
27
run : |
23
31
cp -r ArduinoCore-API/api modules/lib/Arduino-Zephyr-API/cores/arduino/.
24
32
25
33
- name : Build fade
26
- working-directory : Arduino-Zephyr-API
34
+ working-directory : Arduino-Zephyr-API/modules/lib/Arduino-Zephyr-API
27
35
run : |
28
36
west build -p -b arduino_nano_33_ble_sense samples/fade
29
37
You can’t perform that action at this time.
0 commit comments