From c10c563db932143c47a87139d29b22df09ec7802 Mon Sep 17 00:00:00 2001 From: Calle Pettersson Date: Fri, 11 Jun 2021 15:27:01 +0200 Subject: [PATCH] Don't try to build windows/arm64 --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index a616ddc8..086022ad 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -4,7 +4,7 @@ RELEASE = $(patsubst v%,%,$(VERSION))# Remove leading v to comply with Terraform CROSSBUILD_OS = linux windows darwin CROSSBUILD_ARCH = 386 amd64 arm64 -SKIP_OSARCH = darwin_386 +SKIP_OSARCH = darwin_386 windows_arm64 OSARCH_COMBOS = $(filter-out $(SKIP_OSARCH),$(foreach os,$(CROSSBUILD_OS),$(addprefix $(os)_,$(CROSSBUILD_ARCH)))) default: build