We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 251fd0c commit 2849564Copy full SHA for 2849564
1 file changed
.github/workflows/ci.yml
@@ -110,9 +110,12 @@ jobs:
110
# (host tools: DTC, cmake config files). The minimal bundle is ~10 MB
111
# and contains no cross-compiler — only the cmake registration files.
112
# setup.sh -c writes ~/.cmake/packages/Zephyr-sdk/ so CMake finds it.
113
+ # SDK 0.17.0 matches pinned Zephyr v4.4.0 (update this if west.yml
114
+ # revision ever changes). sdk-version file does not exist in v4.4.0.
115
- name: Install Zephyr SDK (minimal, cmake files only)
116
+ env:
117
+ SDK_VER: "0.17.0"
118
run: |
- SDK_VER=$(cat zephyr/sdk-version | tr -d '[:space:]')
119
wget -q \
120
"https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v${SDK_VER}/zephyr-sdk-${SDK_VER}_linux-x86_64_minimal.tar.xz" \
121
-O /tmp/zephyr-sdk-minimal.tar.xz
0 commit comments