You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2022/04/19 01:56:31 UTC

[incubator-nuttx] branch master updated: Revert "tools/cibuild.sh: Download risc-v toolchain with --no-check-certificate"

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 88369d54c4 Revert "tools/cibuild.sh: Download risc-v toolchain with --no-check-certificate"
88369d54c4 is described below

commit 88369d54c4e397ba340e640052c39be41e63d008
Author: Petro Karashchenko <pe...@gmail.com>
AuthorDate: Mon Apr 18 23:40:20 2022 +0200

    Revert "tools/cibuild.sh: Download risc-v toolchain with --no-check-certificate"
    
    This reverts commit 3b97e37b525d50d8a78765f85276f900129dade5.
---
 tools/ci/cibuild.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/ci/cibuild.sh b/tools/ci/cibuild.sh
index 93346fdd00..3b18ae3fa9 100755
--- a/tools/ci/cibuild.sh
+++ b/tools/ci/cibuild.sh
@@ -196,7 +196,7 @@ function riscv-gcc-toolchain {
         ;;
     esac
     cd "${prebuilt}"
-    wget --quiet --no-check-certificate https://static.dev.sifive.com/dev-tools/freedom-tools/v2020.12/riscv64-unknown-elf-toolchain-10.2.0-2020.12.8-${flavor}.tar.gz
+    wget --quiet https://static.dev.sifive.com/dev-tools/freedom-tools/v2020.12/riscv64-unknown-elf-toolchain-10.2.0-2020.12.8-${flavor}.tar.gz
     tar zxf riscv64-unknown-elf-toolchain-10.2.0-2020.12.8-${flavor}.tar.gz
     mv riscv64-unknown-elf-toolchain-10.2.0-2020.12.8-${flavor} riscv64-unknown-elf-gcc
     rm riscv64-unknown-elf-toolchain-10.2.0-2020.12.8-${flavor}.tar.gz