From: Bin Meng Date: Thu, 30 Aug 2018 13:17:06 +0000 (-0700) Subject: travis: Use kernel.org pre-built toolchain for riscv X-Git-Tag: v2018.09~6 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b5135e453879b12a70c1d0a53a1dbc91059e75a5;p=oweals%2Fu-boot.git travis: Use pre-built toolchain for riscv This updates travis configuration to use kernel.org pre-built toolchain for riscv. Signed-off-by: Bin Meng --- diff --git a/.travis.yml b/.travis.yml index 4db629d15b..95cfa5b6fc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -87,9 +87,8 @@ before_script: fi - if [[ "${TOOLCHAIN}" == "powerpc" ]]; then ./tools/buildman/buildman --fetch-arch powerpc; fi - if [[ "${TOOLCHAIN}" == "riscv" ]]; then - wget https://github.com/andestech/prebuilt/releases/download/20180530/riscv64-unknown-linux-gnu.tar.gz && - tar -C /tmp -xf riscv64-unknown-linux-gnu.tar.gz && - echo -e "\n[toolchain-prefix]\nriscv = /tmp/riscv64-unknown-linux-gnu/bin/riscv64-unknown-linux-gnu-" >> ~/.buildman; + ./tools/buildman/buildman --fetch-arch riscv64; + echo -e "\n[toolchain-alias]\nriscv = riscv64" >> ~/.buildman; fi - if [[ "${QEMU_TARGET}" != "" ]]; then git clone git://git.qemu.org/qemu.git /tmp/qemu;