From 742391357a9bc29b07db0b1186f16cbcc031785f Mon Sep 17 00:00:00 2001 From: Yusuke Kuoka Date: Thu, 24 Mar 2022 02:18:22 +0000 Subject: [PATCH] Fix release job by limiting gox parallelism --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 29b5b760..9c026b6d 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ integration/vagrant: .PHONY: integration/vagrant cross: - env CGO_ENABLED=0 gox -os 'windows darwin linux' -arch '386 amd64 arm64' -osarch '!darwin/386' -output "dist/{{.Dir}}_{{.OS}}_{{.Arch}}" -ldflags '-X github.com/roboll/helmfile/pkg/app/version.Version=${TAG}' ${TARGETS} + env CGO_ENABLED=0 gox -parallel 4 -os 'windows darwin linux' -arch '386 amd64 arm64' -osarch '!darwin/386' -output "dist/{{.Dir}}_{{.OS}}_{{.Arch}}" -ldflags '-X github.com/roboll/helmfile/pkg/app/version.Version=${TAG}' ${TARGETS} .PHONY: cross static-linux: