Commit 7a4b1926 authored by Jerzy Kasenberg's avatar Jerzy Kasenberg Committed by Fabio Utzig
Browse files

ci: mynewt: Download nrfx from separate repository



Mynewt used to have copy of nrfx.
Now nrfx is taken from original repository and since some CI
targets want to build for NRF MCUs nrfx repository nees to be
downloaded.

Signed-off-by: default avatarJerzy Kasenberg <jerzy.kasenberg@codecoup.pl>
parent 2878eb4e
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -34,6 +34,10 @@ shallow_clone_mynewt() {
    mkdir -p repos/apache-mynewt-core
    git clone --depth=1 https://github.com/apache/mynewt-core repos/apache-mynewt-core
    [[ $? -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
    [[ $? -ne 0 ]] && exit 1
}

arm_toolchain_install() {