From 226e35bbc7eb02430a595e3e15609039208c60e8 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Fri, 23 Feb 2024 15:30:26 +0100 Subject: [PATCH] ci: mynewt: Update external repositories Match version with what is now used in upstream Mynewt. Also add ARM CMSIS which is now taken from original repo. Signed-off-by: Szymon Janc --- ci/mynewt_install.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ci/mynewt_install.sh b/ci/mynewt_install.sh index 3ea0534e..3ce73a4c 100755 --- a/ci/mynewt_install.sh +++ b/ci/mynewt_install.sh @@ -36,11 +36,15 @@ shallow_clone_mynewt() { [[ $? -ne 0 ]] && exit 1 # nrfx is now taken from original repository - git clone --depth=1 --branch v2.8.0 https://github.com/NordicSemiconductor/nrfx.git repos/nordic-nrfx + git clone --depth=1 --branch v3.3.0 https://github.com/NordicSemiconductor/nrfx.git repos/nordic-nrfx [[ $? -ne 0 ]] && exit 1 # Mbed-TLS is now taken from original repository - git clone --depth=1 --branch v2.28.3 https://github.com/Mbed-TLS/mbedtls.git repos/mbedtls + git clone --depth=1 --branch v2.28.4 https://github.com/Mbed-TLS/mbedtls.git repos/mbedtls + [[ $? -ne 0 ]] && exit 1 + + # CMSIS is now taken from original repository + git clone --depth=1 --branch 5.4.0 https://github.com/ARM-software/CMSIS_5.git repos/arm-CMSIS_5 [[ $? -ne 0 ]] && exit 1 }