]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
travis: bump wolfssl to 4.7.0
authorDaniel Stenberg <daniel@haxx.se>
Tue, 16 Mar 2021 09:05:21 +0000 (10:05 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 16 Mar 2021 10:00:29 +0000 (11:00 +0100)
.travis.yml
scripts/travis/before_script.sh

index c86b0273c169bc558440da6dc06e774e1bbce453..93924264360be09ee2b2ed025c902e12b65f13bd 100644 (file)
@@ -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
 
index 945132e4657c1402c3a3e4d2a46e9970f447e6b2..7fc306517233e614af166aea5db557263b402802 100755 (executable)
@@ -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