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.
This commit is contained in:
+1
-1
@@ -37,7 +37,7 @@ build_botan()
|
|||||||
|
|
||||||
build_wolfssl()
|
build_wolfssl()
|
||||||
{
|
{
|
||||||
WOLFSSL_REV=v5.0.0-stable
|
WOLFSSL_REV=v5.1.1-stable
|
||||||
WOLFSSL_DIR=$DEPS_BUILD_DIR/wolfssl
|
WOLFSSL_DIR=$DEPS_BUILD_DIR/wolfssl
|
||||||
|
|
||||||
if test -d "$WOLFSSL_DIR"; then
|
if test -d "$WOLFSSL_DIR"; then
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
PKG = wolfssl
|
PKG = wolfssl
|
||||||
SRC = https://github.com/wolfSSL/$(PKG).git
|
SRC = https://github.com/wolfSSL/$(PKG).git
|
||||||
REV = v5.0.0-stable
|
REV = v5.1.1-stable
|
||||||
|
|
||||||
NUM_CPUS := $(shell getconf _NPROCESSORS_ONLN)
|
NUM_CPUS := $(shell getconf _NPROCESSORS_ONLN)
|
||||||
|
|
||||||
@@ -40,7 +40,7 @@ all: install
|
|||||||
@touch $@
|
@touch $@
|
||||||
|
|
||||||
.$(PKG)-checkout-$(REV): .$(PKG)-cloned
|
.$(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 $@
|
@rm -f .$(PKG)-checkout-* && touch $@
|
||||||
|
|
||||||
.$(PKG)-built-$(REV): .$(PKG)-checkout-$(REV)
|
.$(PKG)-built-$(REV): .$(PKG)-checkout-$(REV)
|
||||||
|
|||||||
Reference in New Issue
Block a user