From 1b9ce1ecfe805ab1f4bf03f16a02df2233d02069 Mon Sep 17 00:00:00 2001 From: Damian Krolik Date: Thu, 17 Feb 2022 15:26:26 +0100 Subject: [PATCH] [docker] Update nRF Connect SDK version Use the recently released NCS 1.9.0 --- integrations/docker/images/chip-build-nrf-platform/Dockerfile | 4 ++-- integrations/docker/images/chip-build/version | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/integrations/docker/images/chip-build-nrf-platform/Dockerfile b/integrations/docker/images/chip-build-nrf-platform/Dockerfile index e73fac173e7795..8ba87525515903 100644 --- a/integrations/docker/images/chip-build-nrf-platform/Dockerfile +++ b/integrations/docker/images/chip-build-nrf-platform/Dockerfile @@ -2,7 +2,7 @@ ARG VERSION=latest FROM connectedhomeip/chip-build:${VERSION} as build # Compatible Nordic Connect SDK revision. -ARG NCS_REVISION=v1.8.0 +ARG NCS_REVISION=v1.9.0 RUN set -x \ && apt-get update \ @@ -28,7 +28,6 @@ RUN set -x \ WORKDIR /opt/NordicSemiconductor/nrfconnect RUN set -x \ && python3 -m pip install -U --no-cache-dir \ - cmake==3.21.2 \ west==0.12.0 \ && west init -m https://github.com/nrfconnect/sdk-nrf \ && git -C nrf fetch origin "$NCS_REVISION" \ @@ -60,6 +59,7 @@ COPY --from=build /opt/NordicSemiconductor/nrfconnect/ /opt/NordicSemiconductor/ RUN set -x \ # python3-yaml package conflicts with nRF Python requirements && (apt-get remove -fy python3-yaml && apt-get autoremove || exit 0) \ + && python3 -m pip install -U --no-cache-dir cmake==3.22.2 \ && python3 -m pip install --no-cache-dir -r /opt/NordicSemiconductor/nrfconnect/zephyr/scripts/requirements.txt \ && python3 -m pip install --no-cache-dir -r /opt/NordicSemiconductor/nrfconnect/nrf/scripts/requirements.txt \ && python3 -m pip install --no-cache-dir -r /opt/NordicSemiconductor/nrfconnect/bootloader/mcuboot/scripts/requirements.txt \ diff --git a/integrations/docker/images/chip-build/version b/integrations/docker/images/chip-build/version index 35c647fad38f54..a9f9bb4e9a67cc 100644 --- a/integrations/docker/images/chip-build/version +++ b/integrations/docker/images/chip-build/version @@ -1 +1 @@ -0.5.55 Version bump reason: [Ameba] Support OTA header +0.5.56 Version bump reason: Update nRF Connect SDK