From 247ae9108c1d1bec091eeadbc102799d274afc03 Mon Sep 17 00:00:00 2001 From: Yusuke Kuoka Date: Thu, 4 Mar 2021 10:27:39 +0900 Subject: [PATCH] Disable darwin/386 build to avoid release failure --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 51d53fd6..8d2f6c30 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ integration: .PHONY: integration cross: - env CGO_ENABLED=0 gox -os 'windows darwin linux' -arch '386 amd64 arm64' -osarch '!darwin/arm64' -output "dist/{{.Dir}}_{{.OS}}_{{.Arch}}" -ldflags '-X github.com/roboll/helmfile/pkg/app/version.Version=${TAG}' ${TARGETS} + env CGO_ENABLED=0 gox -os 'windows darwin linux' -arch '386 amd64 arm64' -osarch '!darwin/arm64 !darwin/386' -output "dist/{{.Dir}}_{{.OS}}_{{.Arch}}" -ldflags '-X github.com/roboll/helmfile/pkg/app/version.Version=${TAG}' ${TARGETS} .PHONY: cross static-linux: