From bd554e75d21f8872ae8401dc490dd5d3b2d0ccab Mon Sep 17 00:00:00 2001 From: Carlos Eduardo Arango Gutierrez Date: Thu, 25 Apr 2024 16:33:51 +0200 Subject: [PATCH] Disable armv7 builds This patch sets IMAGE_ALL_PLATFORMS=linux/amd64,linux/arm64 at scripts/test-infra/push-image.sh to explicity set the archs to build images during cloudbuild post prow steps Signed-off-by: Carlos Eduardo Arango Gutierrez --- scripts/test-infra/push-image.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test-infra/push-image.sh b/scripts/test-infra/push-image.sh index b6b2fbccb..852135bf2 100755 --- a/scripts/test-infra/push-image.sh +++ b/scripts/test-infra/push-image.sh @@ -9,4 +9,4 @@ VERSION_OVERRIDE=${_GIT_TAG+VERSION=${_GIT_TAG:10}} gcloud auth configure-docker # Build and push images -make push-all $VERSION_OVERRIDE +IMAGE_ALL_PLATFORMS=linux/amd64,linux/arm64 make push-all $VERSION_OVERRIDE