From c5a2325b40a2b277af6d0008fdcb391fde71c2ed Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Sun, 12 Mar 2023 18:10:55 +0900 Subject: [PATCH] Dockerfile: Update to Zephyr SDK 0.16.0-rc1 This commit updates the Zephyr SDK version to 0.16.0-rc1. Note that the distribution archive format was changed from tar.gz to tar.xz in the SDK 0.16.0 release. Signed-off-by: Stephanos Ioannidis --- Dockerfile.ci | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.ci b/Dockerfile.ci index 6cc2af2..f7461f0 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -3,7 +3,7 @@ ARG BASE_IMAGE FROM ${BASE_IMAGE:-zephyrprojectrtos/ci-base:latest} -ARG ZSDK_VERSION=0.15.2 +ARG ZSDK_VERSION=0.16.0-rc1 ARG DOXYGEN_VERSION=1.9.4 ARG CMAKE_VERSION=3.20.5 ARG RENODE_VERSION=1.13.3 @@ -82,10 +82,10 @@ RUN mkdir -p /opt/protoc && \ # Install Zephyr SDK RUN mkdir -p /opt/toolchains && \ cd /opt/toolchains && \ - wget ${WGET_ARGS} https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v${ZSDK_VERSION}/zephyr-sdk-${ZSDK_VERSION}_linux-${HOSTTYPE}.tar.gz && \ - tar xf zephyr-sdk-${ZSDK_VERSION}_linux-${HOSTTYPE}.tar.gz && \ + wget ${WGET_ARGS} https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v${ZSDK_VERSION}/zephyr-sdk-${ZSDK_VERSION}_linux-${HOSTTYPE}.tar.xz && \ + tar xf zephyr-sdk-${ZSDK_VERSION}_linux-${HOSTTYPE}.tar.xz && \ zephyr-sdk-${ZSDK_VERSION}/setup.sh -t all -h -c && \ - rm zephyr-sdk-${ZSDK_VERSION}_linux-${HOSTTYPE}.tar.gz + rm zephyr-sdk-${ZSDK_VERSION}_linux-${HOSTTYPE}.tar.xz # Clean up stale packages RUN apt-get clean -y && \