mirror of
https://github.com/moparisthebest/curl
synced 2024-12-23 08:38:49 -05:00
travis: add a build using libressl (from git master)
The v3.2.1 tag (latest release atm) results in a broken build. Closes #5932
This commit is contained in:
parent
8684bb70d3
commit
6f42e3b169
@ -109,6 +109,9 @@ jobs:
|
|||||||
- libpsl-dev
|
- libpsl-dev
|
||||||
- libbrotli-dev
|
- libbrotli-dev
|
||||||
- libzstd-dev
|
- libzstd-dev
|
||||||
|
- env:
|
||||||
|
- T=novalgrind LIBRESSL=yes C="--with-ssl=$HOME/libressl" LD_LIBRARY_PATH=/home/travis/libressl/lib:/usr/local/lib
|
||||||
|
- OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
|
||||||
- env:
|
- env:
|
||||||
- T=novalgrind NGTCP2=yes C="--with-ssl=$HOME/ngbuild --with-ngtcp2=$HOME/ngbuild --with-nghttp3=$HOME/ngbuild --enable-alt-svc" NOTESTS=
|
- T=novalgrind NGTCP2=yes C="--with-ssl=$HOME/ngbuild --with-ngtcp2=$HOME/ngbuild --with-nghttp3=$HOME/ngbuild --enable-alt-svc" NOTESTS=
|
||||||
- OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
|
- OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
|
||||||
|
@ -98,6 +98,16 @@ if [ "$TRAVIS_OS_NAME" = linux -a "$OPENSSL3" ]; then
|
|||||||
make install_sw
|
make install_sw
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "$TRAVIS_OS_NAME" = linux -a "$LIBRESSL" ]; then
|
||||||
|
cd $HOME
|
||||||
|
git clone --depth=1 https://github.com/libressl-portable/portable.git libressl-git
|
||||||
|
cd libressl-git
|
||||||
|
./autogen.sh
|
||||||
|
./configure --prefix=$HOME/libressl
|
||||||
|
make
|
||||||
|
make install
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "$TRAVIS_OS_NAME" = linux -a "$QUICHE" ]; then
|
if [ "$TRAVIS_OS_NAME" = linux -a "$QUICHE" ]; then
|
||||||
cd $HOME
|
cd $HOME
|
||||||
git clone --depth=1 --recursive https://github.com/cloudflare/quiche.git
|
git clone --depth=1 --recursive https://github.com/cloudflare/quiche.git
|
||||||
|
Loading…
Reference in New Issue
Block a user