diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-03-11 16:49:49 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-03-11 16:49:49 +0100 |
commit | bda3710b092e433c6085b6cdac2cbc191f15063a (patch) | |
tree | ae7e87affb3c194bffcc0d9dee83829042fcd99b | |
parent | 7b2f0676c2eaaa99e8773134414769fab02c2b2d (diff) | |
download | curl-bda3710b092e433c6085b6cdac2cbc191f15063a.tar.gz |
travis: switch ngtcp2 build over to quictlsbagder/ngtcp2-quictls
The ngtcp2 project switched over to using the quictls OpenSSL fork
instead of their own patched OpenSSL. We follow suit.
-rwxr-xr-x | scripts/travis/before_script.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/travis/before_script.sh b/scripts/travis/before_script.sh index 0e05e977d..c4a5adb8c 100755 --- a/scripts/travis/before_script.sh +++ b/scripts/travis/before_script.sh @@ -43,7 +43,7 @@ if [ "$NGTCP2" = yes ]; then make install else cd $HOME - git clone --depth 1 -b OpenSSL_1_1_1g-quic-draft-29 https://github.com/tatsuhiro-t/openssl possl + git clone --depth 1 -b OpenSSL_1_1_1j+quic https://github.com/quictls/openssl possl cd possl ./config enable-tls1_3 --prefix=$HOME/ngbuild make |