From 2fb33a84a181b372cfc2c30463ccfa926c9eb7d9 Mon Sep 17 00:00:00 2001 From: Markus Becker Date: Tue, 29 Apr 2025 12:45:48 +0000 Subject: [PATCH] Add NCS v3.0.0 and switch nrfutil install via sdk-manager --- .github/workflows/publish.yml | 2 +- ncs/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5c56005..f55c547 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - sdk: [v2.5.0,v2.7.0,v2.8.0,v2.9.0] + sdk: [v2.5.0,v2.7.0,v2.8.0,v2.9.0,v3.0.0] steps: - name: Checkout repository diff --git a/ncs/Dockerfile b/ncs/Dockerfile index 873784e..78140dd 100644 --- a/ncs/Dockerfile +++ b/ncs/Dockerfile @@ -20,8 +20,8 @@ RUN \ && wget https://developer.nordicsemi.com/.pc-tools/nrfutil/x64-linux/nrfutil \ && chmod +x nrfutil \ && mv nrfutil /usr/bin \ - && nrfutil install toolchain-manager \ - && nrfutil toolchain-manager install --ncs-version ${NCS_SDK_VERSION} \ + && nrfutil install sdk-manager \ + && nrfutil sdk-manager toolchain install --ncs-version ${NCS_SDK_VERSION} \ && apt-get remove -y --purge \ wget \ && apt-get clean \