diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-10-25 23:08:54 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-10-25 23:08:54 +0100 |
commit | 96450a1a33ec22cb54b20dbac08ebdf14648582f (patch) | |
tree | c3beaaf86442d1934d74a7902e53d29edb4a9a48 /scripts/travis | |
parent | e2bcdf557b16962af51a34ce493c4375e24895a7 (diff) | |
download | curl-96450a1a33ec22cb54b20dbac08ebdf14648582f.tar.gz |
alt-svc: enable by default
Remove CURLALTSVC_IMMEDIATELY, which was never implemented/supported.
alt-svc support in curl is no longer considered experimental
Closes #5868
Diffstat (limited to 'scripts/travis')
-rwxr-xr-x | scripts/travis/script.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/travis/script.sh b/scripts/travis/script.sh index 147b62886..732a50fd7 100755 --- a/scripts/travis/script.sh +++ b/scripts/travis/script.sh @@ -25,7 +25,7 @@ set -eo pipefail ./buildconf if [ "$T" = "coverage" ]; then - ./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-code-coverage --enable-werror --enable-alt-svc --with-libssh2 + ./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-code-coverage --enable-werror --with-libssh2 make make TFLAGS=-n test-nonflaky make "TFLAGS=-n -e" test-nonflaky @@ -36,7 +36,7 @@ if [ "$T" = "coverage" ]; then fi if [ "$T" = "torture" ]; then - ./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-code-coverage --enable-werror --enable-alt-svc --with-libssh2 + ./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-code-coverage --enable-werror --with-libssh2 make make TFLAGS=-n test-nonflaky make "TFLAGS=-n -e" test-nonflaky |