From 60d0c4ddd443e2256ea3018185d1d366e2415234 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Mon, 27 Jun 2022 17:50:29 +0200 Subject: [PATCH] ci: Compile/Install Verilator from sources (Required for updated Vexriscv-SMP). --- .github/workflows/ci.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 24068961e..308939f4b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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