diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-09-02 15:48:18 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-09-03 07:57:20 +0200 |
commit | 63a111a2770c04d9575386a87a34878226fe9c0e (patch) | |
tree | 74e98b2b1de1f9ea03d9ad129189d589b711d61a /scripts | |
parent | b3fbb2fb9dde9ab93db67a7ccc2130e68714016b (diff) | |
download | curl-63a111a2770c04d9575386a87a34878226fe9c0e.tar.gz |
travis: add a CI job with openssl3 (from git master)
Closes #5908
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis/before_script.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/travis/before_script.sh b/scripts/travis/before_script.sh index e8bf71950..ddadae215 100755 --- a/scripts/travis/before_script.sh +++ b/scripts/travis/before_script.sh @@ -89,6 +89,15 @@ if [ "$TRAVIS_OS_NAME" = linux -a "$BORINGSSL" ]; then export LIBS=-lpthread fi +if [ "$TRAVIS_OS_NAME" = linux -a "$OPENSSL3" ]; then + cd $HOME + git clone --depth=1 https://github.com/openssl/openssl + cd openssl + ./config enable-tls1_3 --prefix=$HOME/openssl3 + make + make install_sw +fi + if [ "$TRAVIS_OS_NAME" = linux -a "$QUICHE" ]; then cd $HOME git clone --depth=1 --recursive https://github.com/cloudflare/quiche.git |