From 34f68ed67c0d1b1172f500808f42966c7b7d724b Mon Sep 17 00:00:00 2001 From: Fabio Utzig Date: Thu, 16 Sep 2021 07:09:38 -0300 Subject: [PATCH] ci: fix wget error downloading arm-gcc-embedded Disable certificate verification for developer.arm.com to avoid certificate issues when installing arm embedded tools to build Mynewt. Signed-off-by: Fabio Utzig --- ci/mynewt_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/mynewt_install.sh b/ci/mynewt_install.sh index abadfb38..0c43a7ab 100755 --- a/ci/mynewt_install.sh +++ b/ci/mynewt_install.sh @@ -45,7 +45,7 @@ arm_toolchain_install() { mkdir -p $TOOLCHAIN_PATH if [ ! -s ${TOOLCHAIN_PATH}/$GCC_BASE/bin/arm-none-eabi-gcc ]; then - wget -O ${TOOLCHAIN_PATH}/${GCC_BASE}.tar.bz2 $GCC_URL + wget --no-check-certificate -O ${TOOLCHAIN_PATH}/${GCC_BASE}.tar.bz2 $GCC_URL [[ $? -ne 0 ]] && exit 1 tar xfj ${TOOLCHAIN_PATH}/${GCC_BASE}.tar.bz2 -C $TOOLCHAIN_PATH