From fdf16bca6290d856e8860b42775b83961555c6f7 Mon Sep 17 00:00:00 2001 From: sue445 Date: Sun, 4 Oct 2020 23:02:05 +0900 Subject: [PATCH] Exclude darwin/386 `darwin/386` is dropped since go 1.15 ``` --> darwin/386 error: exit status 2 Stderr: cmd/go: unsupported GOOS/GOARCH pair darwin/386 ``` https://app.circleci.com/pipelines/github/sue445/gitpanda/1037/workflows/a60fc726-fbda-46e6-8bda-d3fdb3ff0b18/jobs/5190 So I dropped this. https://github.com/mitchellh/gox/issues/146#issuecomment-702096359 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 777ae486..aa9c1410 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ linux_amd64: $(SRCS) .PHONY: gox gox: - gox -ldflags=$(LDFLAGS) -output="bin/gitpanda_{{.OS}}_{{.Arch}}" + gox -ldflags=$(LDFLAGS) -osarch "!darwin/386" -output="bin/gitpanda_{{.OS}}_{{.Arch}}" .PHONY: zip zip: