diff options
author | Peter Wu <peter@lekensteyn.nl> | 2020-05-09 00:18:29 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-05-10 23:36:54 +0200 |
commit | ac26be86f397ddd23bf0ad14ca2cb91a38665b53 (patch) | |
tree | 016a9ada8d3e56a106f2731e7f4d781e65d3f255 /scripts | |
parent | 5d8c53d320acb585f72ad6298d8a18715771459f (diff) | |
download | curl-ac26be86f397ddd23bf0ad14ca2cb91a38665b53.tar.gz |
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 'scripts')
-rwxr-xr-x | scripts/travis/script.sh | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/scripts/travis/script.sh b/scripts/travis/script.sh index 57625fc6d..2b20a9910 100755 --- a/scripts/travis/script.sh +++ b/scripts/travis/script.sh @@ -106,13 +106,8 @@ if [ "$T" = "iconv" ]; then fi if [ "$T" = "cmake" ]; then - if [ $TRAVIS_OS_NAME = linux ]; then - cmake -H. -Bbuild -DCURL_WERROR=ON - cmake --build build - else - cmake -H. -Bbuild -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DCURL_DISABLE_LDAP=ON -DCURL_DISABLE_LDAPS=ON - cmake --build build - fi + cmake -H. -Bbuild -DCURL_WERROR=ON $C + cmake --build build fi if [ "$T" = "distcheck" ]; then |