diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-09-15 18:56:14 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-09-15 22:49:37 +0200 |
commit | 9fe7b66203b3157213f1b6a22f545ffc2db6e47d (patch) | |
tree | f17e930f0dcb42437f4f9292cdc2767ca46f83b4 /scripts | |
parent | 304aeace1b4e0067430caffa8bcc1af34a6455dd (diff) | |
download | curl-9fe7b66203b3157213f1b6a22f545ffc2db6e47d.tar.gz |
travis: use libressl v3.1.4 instead of master
... as their git master seems too fragile to use (and 3.2.1 which is the
latest has a build failure).
Closes #5964
Diffstat (limited to 'scripts')
-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 842f967a1..4d3d6f74a 100755 --- a/scripts/travis/before_script.sh +++ b/scripts/travis/before_script.sh @@ -100,7 +100,7 @@ fi if [ "$TRAVIS_OS_NAME" = linux -a "$LIBRESSL" ]; then cd $HOME - git clone --depth=1 https://github.com/libressl-portable/portable.git libressl-git + git clone --depth=1 -b v3.1.4 https://github.com/libressl-portable/portable.git libressl-git cd libressl-git ./autogen.sh ./configure --prefix=$HOME/libressl |