From f67241a33361e79532c57b85459b3680554d9249 Mon Sep 17 00:00:00 2001 From: Connor Catlett Date: Thu, 19 Dec 2024 18:00:49 +0000 Subject: [PATCH] Fixup FIPS Makefile/E2E Signed-off-by: Connor Catlett --- Makefile | 2 +- hack/e2e/build-image.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ccdf2505a..044395700 100644 --- a/Makefile +++ b/Makefile @@ -201,7 +201,7 @@ sub-push: all-image-registry push-manifest .PHONY: sub-push-fips sub-push-fips: - $(MAKE) FIPS=true sub-push + $(MAKE) FIPS=true TAG=$(TAG)-fips sub-push .PHONY: sub-push-a1compat sub-push-a1-compat: sub-image-linux-arm64-al2 diff --git a/hack/e2e/build-image.sh b/hack/e2e/build-image.sh index fb098d730..f5c28be54 100755 --- a/hack/e2e/build-image.sh +++ b/hack/e2e/build-image.sh @@ -64,7 +64,7 @@ function build_and_push() { export ALL_OS="linux" export ALL_ARCH_linux="${IMAGE_ARCH}" fi - make -j $(nproc) all-push + make -j $(nproc) sub-push loudecho "Image pushed to ${IMAGE_NAME}:${IMAGE_TAG}" }