ci: Compile/Install Verilator from sources (Required for updated Vexriscv-SMP).

This commit is contained in:
Florent Kermarrec 2022-06-27 17:50:29 +02:00
parent 4ff839900b
commit 60d0c4ddd4
1 changed files with 16 additions and 1 deletions

View File

@ -10,11 +10,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Setup CCache
uses: hendrikmuhs/ccache-action@v1
# Install Tools
- name: Install Tools
run: |
sudo apt-get install wget build-essential python3 ninja-build
sudo apt-get install verilator libevent-dev libjson-c-dev
sudo apt-get install libevent-dev libjson-c-dev flex bison
sudo apt-get install libfl-dev libfl2 zlibc zlib1g-dev
pip3 install setuptools
pip3 install requests
pip3 install pexpect
@ -35,6 +39,17 @@ jobs:
sudo mkdir /usr/local/openrisc
sudo cp -r $PWD/../openrisc-*/* /usr/local/openrisc
# Build / Install Verilator
- name: Build Verilator
run: |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
git clone https://github.com/verilator/verilator
cd verilator
autoconf
./configure
make -j$(nproc)
sudo make install
# Install Project
- name: Install Project
run: python3 setup.py develop --user