CI: add build job on Linux with libvvp enabled
This commit is contained in:
parent
11a85b75f6
commit
c015344083
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue