aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2020-05-09 00:18:29 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-05-10 23:36:54 +0200
commitac26be86f397ddd23bf0ad14ca2cb91a38665b53 (patch)
tree016a9ada8d3e56a106f2731e7f4d781e65d3f255 /.travis.yml
parent5d8c53d320acb585f72ad6298d8a18715771459f (diff)
travis: Add ngtcp2 and quiche tests for CMake
To avoid an explosion of jobs, extend the existing CMake tests with ngtcp2 and quiche support. macOS was previously moved to GitHub actions, so the non-Linux case can be dropped.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 9 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 59f075fc0..a5ce9625f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -299,9 +299,15 @@ matrix:
- os: linux
compiler: gcc
dist: bionic
+ before_install:
+ # Install and use the current stable release of Go (for boringssl)
+ - gimme --list
+ - eval "$(gimme stable)"
+ - gimme --list
env:
- - T=cmake
+ - T=cmake BORINGSSL=yes QUICHE=yes C="-DUSE_QUICHE=1 -DOPENSSL_ROOT_DIR=$HOME/boringssl"
- OVERRIDE_CC="CC=gcc-8" OVERRIDE_CXX="CXX=g++-8"
+ - PKG_CONFIG_PATH="$HOME/quiche/target/release"
addons:
apt:
sources:
@@ -314,8 +320,9 @@ matrix:
compiler: clang
dist: bionic
env:
- - T=cmake
+ - T=cmake NGTCP2=yes C="-DUSE_NGTCP2=ON"
- OVERRIDE_CC="CC=clang-7" OVERRIDE_CXX="CXX=clang++-7"
+ - PKG_CONFIG_PATH="$HOME/ngbuild/lib/pkgconfig"
addons:
apt:
sources: