From d980324393d567bcc8554c925d4720a8cdd7e7df Mon Sep 17 00:00:00 2001 From: Arko Dasgupta Date: Wed, 30 Apr 2025 17:18:57 -0700 Subject: [PATCH] [release/v1.4] skip building egctl for windows_arm64 (#5878) Not enough space on the GHA runner, blocking the release can be triaged later Relates to https://github.com/envoyproxy/gateway/actions/runs/14765129938/job/41457946081 Signed-off-by: Arko Dasgupta (cherry picked from commit c699d88d08a6477d50fad734cf64fd81fe47b5e9) Signed-off-by: Arko Dasgupta --- tools/make/common.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/make/common.mk b/tools/make/common.mk index e8ad27ef05..8879c54a1d 100644 --- a/tools/make/common.mk +++ b/tools/make/common.mk @@ -38,7 +38,8 @@ endif REV=$(shell git rev-parse --short HEAD) # Supported Platforms for building multiarch binaries. -PLATFORMS ?= darwin_amd64 darwin_arm64 linux_amd64 linux_arm64 windows_amd64 windows_arm64 +# Disabled windows_arm64 due to lack of space while building on the GH Runner +PLATFORMS ?= darwin_amd64 darwin_arm64 linux_amd64 linux_arm64 windows_amd64 # Set a specific PLATFORM ifeq ($(origin PLATFORM), undefined)