From c244e366ae71ed7ca179f5d4dc57bd178bfe61b4 Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Fri, 21 Jul 2023 11:34:13 -0700 Subject: [PATCH] Disable FIPS for Bookworm FIPS packages for Bookworm are not yet available. Disable FIPS until those packages are ready. Signed-off-by: Saikrishna Arcot --- Makefile.work | 6 ++++++ azure-pipelines.yml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile.work b/Makefile.work index d9b3212b4e..f9171be013 100644 --- a/Makefile.work +++ b/Makefile.work @@ -184,6 +184,12 @@ INCLUDE_FIPS := n ENABLE_FIPS := n endif +# FIPS not yet available on Bookworm +ifeq ($(BLDENV),bookworm) +$(warning FIPS support not yet available on Bookworm) +INCLUDE_FIPS := n +endif + ifeq ($(INCLUDE_FIPS), n) ifeq ($(ENABLE_FIPS), y) $(error Cannot set fips config ENABLE_FIPS=y when INCLUDE_FIPS=n) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7de4dbff39..223e49be44 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -42,7 +42,7 @@ variables: - name: CACHE_MODE value: rcache - name: ENABLE_FIPS - value: y + value: n stages: - stage: BuildVS