CI: install libpsl or configure --without-libpsl in builds

As a follow-up to the stricted libpsl check in configure
This commit is contained in:
Daniel Stenberg 2024-01-08 16:49:21 +01:00
parent 2998874bb6
commit d18811b52b
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
9 changed files with 28 additions and 23 deletions

View file

@ -30,7 +30,7 @@ jobs:
- run: autoreconf -fi
name: 'autoreconf'
- run: ./configure --without-ssl
- run: ./configure --without-ssl --without-libpsl
name: 'configure'
- run: make V=1 && make V=1 clean
@ -48,7 +48,7 @@ jobs:
echo "::stop-commands::$(uuidgen)"
tar xvf curl-99.98.97.tar.gz
pushd curl-99.98.97
./configure --prefix=$HOME/temp --without-ssl
./configure --prefix=$HOME/temp --without-ssl --without-libpsl
make
make test-ci
make install
@ -73,7 +73,7 @@ jobs:
touch curl-99.98.97/docs/{cmdline-opts,libcurl}/Makefile.inc
mkdir build
pushd build
../curl-99.98.97/configure --without-ssl
../curl-99.98.97/configure --without-ssl --without-libpsl
make
make test-ci
popd
@ -96,7 +96,7 @@ jobs:
pushd curl-99.98.97
mkdir build
pushd build
../configure --without-ssl --enable-debug "--prefix=${PWD}/pkg"
../configure --without-ssl --enable-debug "--prefix=${PWD}/pkg" --without-libpsl
make -j3
make -j3 test-ci
make -j3 install