This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push: new 6711b37662 tools/ci: Update RISC-V toolchain in Dockerfile to latest version 6711b37662 is described below commit 6711b376626d98edc96da99ba0f7272d34b63afd Author: Gustavo Henrique Nihei <gustavo.ni...@espressif.com> AuthorDate: Thu Dec 8 14:08:03 2022 -0300 tools/ci: Update RISC-V toolchain in Dockerfile to latest version The #6094 updated the toolchain, but only in the script used by MacOS CI runners. Signed-off-by: Gustavo Henrique Nihei <gustavo.ni...@espressif.com> --- tools/ci/docker/linux/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/docker/linux/Dockerfile b/tools/ci/docker/linux/Dockerfile index f9ccc3c9a4..bcc3004446 100644 --- a/tools/ci/docker/linux/Dockerfile +++ b/tools/ci/docker/linux/Dockerfile @@ -177,7 +177,7 @@ RUN cd /tools/renesas-tools/build/gcc && \ FROM nuttx-toolchain-base AS nuttx-toolchain-riscv # Download the latest RISCV GCC toolchain prebuilt by SiFive RUN mkdir riscv64-unknown-elf-gcc && \ - curl -s -L "https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.3.0-2019.08.0-x86_64-linux-ubuntu14.tar.gz" \ + curl -s -L "https://static.dev.sifive.com/dev-tools/freedom-tools/v2020.12/riscv64-unknown-elf-toolchain-10.2.0-2020.12.8-x86_64-linux-ubuntu14.tar.gz" \ | tar -C riscv64-unknown-elf-gcc --strip-components 1 -xz ###############################################################################