summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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