diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-03-16 10:05:21 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-03-16 11:00:29 +0100 |
commit | 0785a7776747de7b91def7961e688cc37091b896 (patch) | |
tree | 9c5bd9bad5bec8bbf7c5d81c7a51f9b8087b37c7 /scripts | |
parent | e4a41c104272a96297696c4b9708c82f15f77daa (diff) | |
download | curl-0785a7776747de7b91def7961e688cc37091b896.tar.gz |
travis: bump wolfssl to 4.7.0
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis/before_script.sh | 10 |
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 |