summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-03-16 10:05:21 +0100
committerDaniel Stenberg <daniel@haxx.se>2021-03-16 11:00:29 +0100
commit0785a7776747de7b91def7961e688cc37091b896 (patch)
tree9c5bd9bad5bec8bbf7c5d81c7a51f9b8087b37c7 /scripts
parente4a41c104272a96297696c4b9708c82f15f77daa (diff)
downloadcurl-0785a7776747de7b91def7961e688cc37091b896.tar.gz
travis: bump wolfssl to 4.7.0
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/travis/before_script.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/travis/before_script.sh b/scripts/travis/before_script.sh
index 945132e46..7fc306517 100755
--- a/scripts/travis/before_script.sh
+++ b/scripts/travis/before_script.sh
@@ -138,18 +138,18 @@ if [ "$TRAVIS_OS_NAME" = linux -a "$RUSTLS" ]; then
fi
if [ $TRAVIS_OS_NAME = linux -a "$WOLFSSL" ]; then
- if [ ! -e $HOME/wolfssl-4.4.0-stable/Makefile ]; then
+ if [ ! -e $HOME/wolfssl-4.7.0-stable/Makefile ]; then
cd $HOME
- curl -LO https://github.com/wolfSSL/wolfssl/archive/v4.4.0-stable.tar.gz
- tar -xzf v4.4.0-stable.tar.gz
- cd wolfssl-4.4.0-stable
+ 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
./autogen.sh
./configure --enable-tls13 --enable-all
touch wolfssl/wolfcrypt/fips.h
make
fi
- cd $HOME/wolfssl-4.4.0-stable
+ cd $HOME/wolfssl-4.7.0-stable
sudo make install
fi