Skip to content

Commit bfc4768

Browse files
committed
ci: fix package_core
1 parent 67de1f5 commit bfc4768

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/package_core.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,16 @@ on: [push, pull_request]
55
jobs:
66
build:
77
runs-on: ubuntu-latest
8-
container: zephyrprojectrtos/ci:latest
98
env:
10-
CMAKE_PREFIX_PATH: /opt/toolchains
9+
ZEPHYR_SDK_INSTALL_DIR: /opt/zephyr-sdk-0.16.8/
1110
steps:
11+
- name: Install toolchain
12+
run: |
13+
sudo apt-get update
14+
sudo apt-get install -y --no-install-recommends git cmake wget python3-pip
15+
wget https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.8/zephyr-sdk-0.16.8_linux-x86_64_minimal.tar.xz
16+
cd zephyr-sdk-0.16.8 && ./setup.sh -t arm-zephyr-eabi -c
17+
1218
- name: Initialize
1319
working-directory: ArduinoCore-zephyr
1420
run: |

0 commit comments

Comments
 (0)