diff options
-rw-r--r-- | .travis.yml | 2 | ||||
-rwxr-xr-x | scripts/travis/before_script.sh | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index c86b0273c..939242643 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ os: linux dist: bionic cache: directories: - - $HOME/wolfssl-4.4.0-stable + - $HOME/wolfssl-4.7.0-stable - $HOME/mesalink-1.0.0 - $HOME/nghttp2-1.39.2 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 |