Skip to content

Commit 0489f88

Browse files
committed
step
1 parent 50ec19c commit 0489f88

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,32 +10,28 @@ jobs:
1010
env:
1111
CMAKE_PREFIX_PATH: /opt/toolchains
1212
CCACHE_IGNOREOPTIONS: -specs=*
13-
REPOSITORY: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
14-
BRANCH: ${{ github.event.pull_request.head.ref || github.ref_name }}
1513
steps:
1614
- uses: actions/checkout@v4
1715
with:
1816
fetch-depth: 0
1917
persist-credentials: false
2018
sparse-checkout: |
2119
west.yml
20+
boards.txt
2221
- name: Setup Zephyr project
2322
uses: zephyrproject-rtos/action-zephyr-setup@v1
2423
with:
2524
toolchains: arm-zephyr-eabi
26-
sdk-version: 0.17.0
25+
sdk-version: 0.16.8
2726

2827
- name: Build fade
29-
working-directory: build
3028
run: |
3129
west build -p -b arduino_nano_33_ble//sense modules/lib/ArduinoCore-zephyr/samples/fade
3230
3331
- name: Build i2cdemo
34-
working-directory: build
3532
run: |
3633
west build -p -b ek_ra8d1 modules/lib/ArduinoCore-zephyr/samples/i2cdemo
3734
3835
- name: Build adc
39-
working-directory: build
4036
run: |
4137
west build -p -b arduino_nano_33_ble/nrf52840/sense modules/lib/ArduinoCore-zephyr/samples/analog_input

extra/bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
if [ ! -f platform.txt ]; then
3+
if [ ! -f boards.txt ]; then
44
echo Launch this script from the root core folder as ./extra/bootstrap.sh
55
exit 2
66
fi

0 commit comments

Comments
 (0)