Merge pull request #1575 from antmicro/mdudek/fix_verilator_build

Add missing package that caused verilator build to fail
This commit is contained in:
enjoy-digital 2023-01-20 19:02:28 +01:00 committed by GitHub
commit 406fd929e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -43,10 +43,10 @@ jobs:
# Build / Install Verilator # Build / Install Verilator
- name: Build Verilator - name: Build Verilator
run: | run: |
sudo apt-get install help2man
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
git clone https://github.com/verilator/verilator git clone https://github.com/verilator/verilator
cd verilator cd verilator
git checkout be65030d6145e4553500b91b3db36db0993aa8af
autoconf autoconf
./configure ./configure
make -j$(nproc) make -j$(nproc)