aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortechknowlogick2019-05-25 15:03:43 -0400
committerzeripath2019-05-25 20:03:43 +0100
commit706d85b87d282c883533e60543cf1ae8e2ad0398 (patch)
treee223b732f4213e8700d23ba058020697295dbffe
parent75e491c03ef3e75ffd0b0bcdb84bee058130a491 (diff)
Disable arm7 builds (#7037) (#7042)
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1bae5a899..2d92a91d5 100644
--- a/Makefile
+++ b/Makefile
@@ -336,7 +336,7 @@ release-linux:
@hash xgo > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
$(GO) get -u src.techknowlogick.com/xgo; \
fi
- xgo -dest $(DIST)/binaries -tags 'netgo osusergo $(TAGS)' -ldflags '-linkmode external -extldflags "-static" $(LDFLAGS)' -targets 'linux/*' -out gitea-$(VERSION) .
+ xgo -dest $(DIST)/binaries -tags 'netgo osusergo $(TAGS)' -ldflags '-linkmode external -extldflags "-static" $(LDFLAGS)' -targets 'linux/amd64,linux/386,linux/arm-5,linux/arm-6,linux/arm64,linux/mips64le,linux/mips,linux/mipsle' -out gitea-$(VERSION) .
ifeq ($(CI),drone)
cp /build/* $(DIST)/binaries
endif