Commit 65643a6a authored by David Brown's avatar David Brown Committed by Fabio Utzig
Browse files

Revert "ci: fix wget error downloading arm-gcc-embedded"



This reverts commit 34f68ed6.

Re-enable certificate checking when downloading the Arm toolchain.
Although, this is probably not all that great of a risk, the certificate
issue was transient, and was fixed shortly after it was noticed.

Signed-off-by: default avatarDavid Brown <david.brown@linaro.org>
parent 9183ffc9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ arm_toolchain_install() {
    mkdir -p $TOOLCHAIN_PATH

    if [ ! -s ${TOOLCHAIN_PATH}/$GCC_BASE/bin/arm-none-eabi-gcc ]; then
      wget --no-check-certificate -O ${TOOLCHAIN_PATH}/${GCC_BASE}.tar.bz2 $GCC_URL
      wget -O ${TOOLCHAIN_PATH}/${GCC_BASE}.tar.bz2 $GCC_URL
      [[ $? -ne 0 ]] && exit 1

      tar xfj ${TOOLCHAIN_PATH}/${GCC_BASE}.tar.bz2 -C $TOOLCHAIN_PATH