From 9deee72bda5b556625351bd7d8dd75350627e671 Mon Sep 17 00:00:00 2001 From: Cody Soyland Date: Fri, 19 May 2017 16:27:49 -0500 Subject: [PATCH 1/2] Add 32-bit build to release process --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index f614068d4..e0fc7056c 100644 --- a/Makefile +++ b/Makefile @@ -45,6 +45,7 @@ crossbuild: vendor release: make crossbuild GOOS=linux GOARCH=amd64 + make crossbuild GOOS=linux GOARCH=386 make crossbuild GOOS=darwin GOARCH=amd64 install: vendor From 124a2e62a87b1a06026d1d05d9fad153b6d4a0ae Mon Sep 17 00:00:00 2001 From: Cody Soyland Date: Mon, 22 May 2017 11:35:02 -0500 Subject: [PATCH 2/2] Remove curly braces (fails on some systems) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e0fc7056c..6d1182bac 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ pilosa: vendor crossbuild: vendor mkdir -p build/pilosa-$(IDENTIFIER) make pilosa FLAGS="-o build/pilosa-$(IDENTIFIER)/pilosa" - cp {LICENSE,README.md} build/pilosa-$(IDENTIFIER) + cp LICENSE README.md build/pilosa-$(IDENTIFIER) tar -cvz -C build -f build/pilosa-$(IDENTIFIER).tar.gz pilosa-$(IDENTIFIER)/ @echo "Created release build: build/pilosa-$(IDENTIFIER).tar.gz"