From 8bdae98a9312f2f4c5467d71cb325a3899aa7b2f Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Thu, 14 Oct 2021 11:57:04 -0500 Subject: [PATCH] fips-check.sh: temporarily arrange for "linuxv5" to be an alias of "linuxv5-ready", to arrange for Jenkins testing of wolfcrypt code in the PR in FIPS mode. --- fips-check.sh | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/fips-check.sh b/fips-check.sh index 249323ea4..6b09aad13 100755 --- a/fips-check.sh +++ b/fips-check.sh @@ -36,8 +36,9 @@ Platform is one of: stm32l4-v2 (FIPSv2, use for STM32L4) wolfrand solaris - linuxv5 (FIPS 140-3) - linuxv5-ready (FIPS 140-3) + linuxv5-RC8 (old FIPS 140-3) + linuxv5 (current FIPS 140-3) + linuxv5-ready (ready FIPS 140-3) Keep (default off) retains the XXX-fips-test temp dir for inspection. Example: @@ -228,7 +229,10 @@ fips-ready) FIPS_INCS=( fips.h ) FIPS_OPTION=ready ;; -linuxv5-ready) + +# note, "linuxv5" is temporarily an alias for "linuxv5-ready", while PR #4359 is in flight: + +linuxv5-ready|linuxv5) FIPS_REPO="git@github.com:wolfSSL/fips.git" FIPS_VERSION="douzzer-linuxkm-fips-140-3" CRYPT_REPO="git@github.com:wolfssl/wolfssl.git" @@ -277,7 +281,7 @@ solaris) FIPS_OPTION=v2 MAKE=gmake ;; -linuxv5) +linuxv5-RC8) FIPS_REPO="git@github.com:wolfSSL/fips.git" FIPS_VERSION="WCv5.0-RC8" CRYPT_REPO="git@github.com:wolfSSL/wolfssl.git"