ci: install RISC-V GCC.

This commit is contained in:
Florent Kermarrec 2020-12-17 16:28:55 +01:00
parent c8b7e1a922
commit f78400aa29
1 changed files with 12 additions and 1 deletions

View File

@ -15,6 +15,7 @@ jobs:
run: |
sudo apt-get install wget build-essential python3
pip3 install setuptools
pip3 install requests
# Install (n)Migen / LiteX / Cores
- name: Install LiteX
@ -22,10 +23,20 @@ jobs:
wget https://raw.githubusercontent.com/enjoy-digital/litex/master/litex_setup.py
python3 litex_setup.py init install --user
# Install RISC-V GCC
- name: Install RISC-V GCC
run: |
wget https://raw.githubusercontent.com/enjoy-digital/litex/master/litex_setup.py
python3 litex_setup.py gcc
sudo mkdir /usr/local/riscv
sudo cp -r $PWD/../riscv64-*/* /usr/local/riscv
# Install Project
- name: Install Project
run: python3 setup.py develop --user
# Test
- name: Run Tests
run: python3 setup.py test
run: |
export PATH=/usr/local/riscv/bin:$PATH
python3 setup.py test