Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tools/ci: Upgrade riscv toolchain to v13.2.0 #11268

Merged
merged 1 commit into from
Dec 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -192,7 +192,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 @@ -26,7 +26,7 @@
# RISC-V

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

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

# x86_64-elf-gcc from homebrew doesn't seem to
Expand Down
Loading