Skip to content

Commit

Permalink
tools/ci: Upgrade riscv toolchain to v13.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoxiang781216 committed Nov 26, 2023
1 parent 3ed6292 commit 4926532
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions tools/ci/cibuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -337,10 +337,10 @@ function riscv-gcc-toolchain {
;;
esac
cd "${tools}"
wget --quiet https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack/releases/download/v12.3.0-2/xpack-riscv-none-elf-gcc-12.3.0-2-${flavor}.tar.gz
tar zxf xpack-riscv-none-elf-gcc-12.3.0-2-${flavor}.tar.gz
mv xpack-riscv-none-elf-gcc-12.3.0-2 riscv-none-elf-gcc
rm xpack-riscv-none-elf-gcc-12.3.0-2-${flavor}.tar.gz
wget --quiet https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack/releases/download/v13.2.0-2/xpack-riscv-none-elf-gcc-13.2.0-2-${flavor}.tar.gz
tar zxf xpack-riscv-none-elf-gcc-13.2.0-2-${flavor}.tar.gz
mv xpack-riscv-none-elf-gcc-13.2.0-2 riscv-none-elf-gcc
rm xpack-riscv-none-elf-gcc-13.2.0-2-${flavor}.tar.gz
fi

command riscv-none-elf-gcc --version
Expand Down
2 changes: 1 addition & 1 deletion tools/ci/docker/linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ RUN cd /tools/renesas-tools/build/gcc && \
FROM nuttx-toolchain-base AS nuttx-toolchain-riscv
# Download the latest RISCV GCC toolchain prebuilt by xPack
RUN mkdir riscv-none-elf-gcc && \
curl -s -L "https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack/releases/download/v12.3.0-2/xpack-riscv-none-elf-gcc-12.3.0-2-linux-x64.tar.gz" \
curl -s -L "https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack/releases/download/v13.2.0-2/xpack-riscv-none-elf-gcc-13.2.0-2-linux-x64.tar.gz" \
| tar -C riscv-none-elf-gcc --strip-components 1 -xz

###############################################################################
Expand Down
2 changes: 1 addition & 1 deletion tools/ci/testlist/macos.dat
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# RISC-V

/risc-v/bl602/bl602evb/configs/wifi

/risc-v/esp32c3/esp32c3-devkit/configs/cxx
/risc-v/esp32c3/esp32c3-devkit/configs/wifi

# ARM
Expand Down

0 comments on commit 4926532

Please sign in to comment.