From cd0c9919d90327e8e9fb04a198b77157e64e4bb0 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Tue, 4 Jan 2022 15:44:29 +0100 Subject: [PATCH] Use wolfSSL 5.1.1 for tests 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 | 2 +- testing/scripts/recipes/012_wolfssl.mk | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/test.sh b/scripts/test.sh index cdb9ce764..343ab9878 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -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 diff --git a/testing/scripts/recipes/012_wolfssl.mk b/testing/scripts/recipes/012_wolfssl.mk index 552329f90..3d7b0749f 100644 --- a/testing/scripts/recipes/012_wolfssl.mk +++ b/testing/scripts/recipes/012_wolfssl.mk @@ -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) -- 2.47.3