]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
Use wolfSSL 5.1.1 for tests
authorTobias Brunner <tobias@strongswan.org>
Tue, 4 Jan 2022 14:44:29 +0000 (15:44 +0100)
committerTobias Brunner <tobias@strongswan.org>
Tue, 4 Jan 2022 14:47:16 +0000 (15:47 +0100)
Add --tags when fetching commits so we get tags that are not in any
branches, which is currently the case with this tag.

scripts/test.sh
testing/scripts/recipes/012_wolfssl.mk

index cdb9ce764f9f9511cfcad07d859dda2de08b9558..343ab9878e8da6f984ef6b18b92989d61849dcb0 100755 (executable)
@@ -37,7 +37,7 @@ build_botan()
 
 build_wolfssl()
 {
-       WOLFSSL_REV=v5.0.0-stable
+       WOLFSSL_REV=v5.1.1-stable
        WOLFSSL_DIR=$DEPS_BUILD_DIR/wolfssl
 
        if test -d "$WOLFSSL_DIR"; then
index 552329f90f78ed2227ef5f5e14982e8a67dad1b3..3d7b0749f3903e2dc8431e0e513b88036a2ea567 100644 (file)
@@ -2,7 +2,7 @@
 
 PKG = wolfssl
 SRC = https://github.com/wolfSSL/$(PKG).git
-REV = v5.0.0-stable
+REV = v5.1.1-stable
 
 NUM_CPUS := $(shell getconf _NPROCESSORS_ONLN)
 
@@ -40,7 +40,7 @@ all: install
        @touch $@
 
 .$(PKG)-checkout-$(REV): .$(PKG)-cloned
-       cd $(PKG) && git fetch && git checkout $(REV)
+       cd $(PKG) && git fetch --tags && git checkout $(REV)
        @rm -f .$(PKG)-checkout-* && touch $@
 
 .$(PKG)-built-$(REV): .$(PKG)-checkout-$(REV)