From f5e52446e0f958cc5d1954d7e98954fe5136e6ca Mon Sep 17 00:00:00 2001 From: Jonas Greifenhain Date: Sun, 25 May 2025 07:03:14 +0200 Subject: [PATCH] Update ZephyrOS SDK to `0.17.0` `0.17.1` does not work. We have to wait for this commit in ZephyrOS: https://github.com/zephyrproject-rtos/zephyr/commit/f075022beca4bb984f2fc8481ee1292b932f5ee6 so for at least ZephyrOS 4.1. The reason is that the SDK bundles a new picolib version and there are breaking changes. New OS versions will address that. --- .github/workflows/build_firmware.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_firmware.yaml b/.github/workflows/build_firmware.yaml index 720d59d3..c2802f06 100644 --- a/.github/workflows/build_firmware.yaml +++ b/.github/workflows/build_firmware.yaml @@ -50,9 +50,9 @@ jobs: - name: Install Zephyr SDK run: | - wget -q https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.16.4/zephyr-sdk-0.16.4_linux-x86_64_minimal.tar.xz - tar xf zephyr-sdk-0.16.4_linux-x86_64_minimal.tar.xz -C ~/ - ~/zephyr-sdk-0.16.4/setup.sh -c -t arm-zephyr-eabi + wget -q https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.0/zephyr-sdk-0.17.0_linux-x86_64_minimal.tar.xz + tar xf zephyr-sdk-0.17.0_linux-x86_64_minimal.tar.xz -C ~/ + ~/zephyr-sdk-0.17.0/setup.sh -c -t arm-zephyr-eabi - name: Initialize Zephyr Workspace # Set up the Zephyr workspace and install the Python dependencies