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 <szymon.janc@codecoup.pl>
This commit is contained in:
Szymon Janc 2024-02-23 15:30:26 +01:00 committed by Jamie
parent ca02c75060
commit 226e35bbc7
1 changed files with 6 additions and 2 deletions

View File

@ -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
}