travis: install riscv toolchain for example.

This commit is contained in:
Florent Kermarrec 2020-08-05 15:51:01 +02:00
parent 6a322ed405
commit 0066866000
1 changed files with 6 additions and 0 deletions

View File

@ -11,6 +11,12 @@ install:
- cd $TRAVIS_BUILD_DIR
- python3 setup.py install
before_script:
# Get RISC-V toolchain
- wget https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-20171231-x86_64-linux-centos6.tar.gz
- tar -xvf riscv64-unknown-elf-gcc-20171231-x86_64-linux-centos6.tar.gz
- export PATH=$PATH:$PWD/riscv64-unknown-elf-gcc-20171231-x86_64-linux-centos6/bin/
script:
- cd $TRAVIS_BUILD_DIR
- python setup.py test