Update CI scripts to continue testing PLI 1 support.
This commit is contained in:
parent
935910c3c9
commit
6210c307fa
|
|
@ -9,7 +9,7 @@ status=0
|
|||
|
||||
perl vvp_reg.pl || status=1
|
||||
|
||||
perl vpi_reg.pl || status=1
|
||||
perl vpi_reg.pl --with-pli1 || status=1
|
||||
|
||||
python3 vvp_reg.py || status=1
|
||||
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ jobs:
|
|||
run: |
|
||||
export PATH="/usr/local/opt/bison/bin:$PATH"
|
||||
autoconf
|
||||
./configure
|
||||
./configure --enable-libveriuser
|
||||
make -j$(nproc) check
|
||||
sudo make install
|
||||
|
||||
|
|
@ -59,7 +59,7 @@ jobs:
|
|||
- name: Build, check and install
|
||||
run: |
|
||||
autoconf
|
||||
./configure
|
||||
./configure --enable-libveriuser
|
||||
make -j$(nproc) check
|
||||
sudo make install
|
||||
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@ build() {
|
|||
cd "${srcdir}"/../..
|
||||
sh autoconf.sh
|
||||
./configure \
|
||||
--enable-libveriuser \
|
||||
--prefix="${MINGW_PREFIX}" \
|
||||
--host="$CARCH"-w64-mingw32
|
||||
mingw32-make
|
||||
|
|
|
|||
Loading…
Reference in New Issue