From f5453d192865bc4d784297e0a6fc9b372df8af43 Mon Sep 17 00:00:00 2001 From: JunYang Date: Wed, 21 Aug 2024 17:15:32 +0800 Subject: [PATCH] fix pull-metrics-server-test-version test --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7226682c7..be2730cad 100644 --- a/Makefile +++ b/Makefile @@ -170,7 +170,7 @@ test-image: container .PHONY: test-image-all test-image-all: - @for arch in $(ALL_ARCHITECTURES); do ARCH=$${arch} $(MAKE) test-image; done + @set -e;for arch in $(ALL_ARCHITECTURES); do ARCH=$${arch} $(MAKE) test-image; done # E2e tests # -----------