diff options
author | Peter Wu <peter@lekensteyn.nl> | 2020-05-10 16:53:00 +0200 |
---|---|---|
committer | Peter Wu <peter@lekensteyn.nl> | 2020-05-22 21:10:07 +0200 |
commit | 421171a8d4d8a59a02fa471d049280b33ea0e48a (patch) | |
tree | e63213217b1fc089c15f0cec653f21cdfaa174ff /.travis.yml | |
parent | 06e266e0a5c877e692eab8a653a1ea47adfae43e (diff) | |
download | curl-421171a8d4d8a59a02fa471d049280b33ea0e48a.tar.gz |
travis: simplify quiche build instructions wrt boringssl
quiche builds boringssl as static library, reuse that instead of
building another shared library.
Closes #5438
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 6f7e67bfb..3c149b877 100644 --- a/.travis.yml +++ b/.travis.yml @@ -98,7 +98,7 @@ jobs: before_install: - eval "$(gimme stable)"; gimme --list # Install latest Go (for boringssl) - env: - - T=novalgrind BORINGSSL=yes QUICHE="yes" C="--with-ssl=$HOME/boringssl --with-quiche=$HOME/quiche/target/release --enable-alt-svc" LD_LIBRARY_PATH=/home/travis/boringssl/lib:$HOME/quiche/target/release:/usr/local/lib + - T=novalgrind QUICHE="yes" C="--with-ssl=$HOME/quiche/deps/boringssl --with-quiche=$HOME/quiche/target/release --enable-alt-svc" LD_LIBRARY_PATH=$HOME/quiche/target/release:/usr/local/lib - OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8" before_install: - eval "$(gimme stable)"; gimme --list # Install latest Go (for boringssl) |