summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-12-26 11:05:02 +0100
committerDaniel Stenberg <daniel@haxx.se>2021-12-27 23:42:02 +0100
commitb72a66193ed3be81426f4431dbe2602e0b2bc26c (patch)
tree0d3c5ec6b07be7d1f505c4dc28912df9d50ba257
parente7f9c904ca20a91a0c87f9ca5812c9ac0307125d (diff)
downloadcurl-bagder/wolfssl-5.tar.gz
zuul: bump the wolfSSL build to use 5.0.0bagder/wolfssl-5
-rwxr-xr-xscripts/zuul/before_script.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/zuul/before_script.sh b/scripts/zuul/before_script.sh
index 9b851a99f..bffdff80a 100755
--- a/scripts/zuul/before_script.sh
+++ b/scripts/zuul/before_script.sh
@@ -142,18 +142,18 @@ if [ "$TRAVIS_OS_NAME" = linux -a "$RUSTLS_VERSION" ]; then
fi
if [ $TRAVIS_OS_NAME = linux -a "$WOLFSSL" ]; then
- if [ ! -e $HOME/wolfssl-4.7.0-stable/Makefile ]; then
+ if [ ! -e $HOME/wolfssl-5.0.0-stable/Makefile ]; then
cd $HOME
- curl -LO https://github.com/wolfSSL/wolfssl/archive/v4.7.0-stable.tar.gz
- tar -xzf v4.7.0-stable.tar.gz
- cd wolfssl-4.7.0-stable
+ curl -LO https://github.com/wolfSSL/wolfssl/archive/v5.0.0-stable.tar.gz
+ tar -xzf v5.0.0-stable.tar.gz
+ cd wolfssl-5.0.0-stable
./autogen.sh
./configure --enable-tls13 --enable-all
touch wolfssl/wolfcrypt/fips.h
make
fi
- cd $HOME/wolfssl-4.7.0-stable
+ cd $HOME/wolfssl-5.0.0-stable
sudo make install
fi