CI: add build job on Linux with libvvp enabled

This commit is contained in:
Ralf Habacker 2026-03-28 20:07:39 +01:00
parent 11a85b75f6
commit c015344083
1 changed files with 26 additions and 0 deletions

View File

@ -71,6 +71,32 @@ jobs:
cd Documentation
make html
lin-with-libvvp:
strategy:
fail-fast: false
matrix:
os: [
'22.04',
'24.04'
]
runs-on: ubuntu-${{ matrix.os }}
name: '🐧 Ubuntu ${{ matrix.os }} (with libvvp)'
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update -qq
sudo apt install -y make g++ git bison flex gperf libreadline-dev libbz2-dev autoconf python3-sphinx python3-docopt
- name: Build, check and install
run: |
autoconf
./configure --enable-libveriuser --enable-libvvp
make -j$(nproc) check
sudo make install
win:
runs-on: windows-latest
strategy: