From 9380135afb747c456d453796c184ed2cf3bfbfad Mon Sep 17 00:00:00 2001 From: Jamie McCrae Date: Tue, 23 May 2023 10:22:56 +0100 Subject: [PATCH] ci: zephyr: Update Zephyr image and SDK version Updates to use the zephyr docker image version 0.26.4 which includes the zephyr SDK 0.16.1, and resolves build issues with recent zephyr changes. Signed-off-by: Jamie McCrae --- .github/workflows/zephyr_build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/zephyr_build.yaml b/.github/workflows/zephyr_build.yaml index c3cfb478..d5f4b54f 100644 --- a/.github/workflows/zephyr_build.yaml +++ b/.github/workflows/zephyr_build.yaml @@ -1,4 +1,4 @@ -# Copyright (c) 2022 Nordic Semiconductor ASA +# Copyright (c) 2022-2023 Nordic Semiconductor ASA # SPDX-License-Identifier: Apache-2.0 name: Build Zephyr samples with Twister @@ -40,12 +40,12 @@ jobs: runs-on: ubuntu-latest # Docker image from the zephyr upstream. Includes SDK and other required tools container: - image: zephyrprojectrtos/ci:v0.24.2 + image: zephyrprojectrtos/ci:v0.26.4 options: '--entrypoint /bin/bash' volumes: - /home/runners/zephyrproject:/github/cache/zephyrproject env: - ZEPHYR_SDK_INSTALL_DIR: /opt/toolchains/zephyr-sdk-0.15.0 + ZEPHYR_SDK_INSTALL_DIR: /opt/toolchains/zephyr-sdk-0.16.1 steps: - name: Set versions when workflow_dispatch