summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authortechknowlogick <matti@mdranta.net>2019-04-14 11:06:43 -0400
committerGitHub <noreply@github.com>2019-04-14 11:06:43 -0400
commit38889f09cbe039217f159838961b631f8f8d3b46 (patch)
tree1daf6295165fa840fe816c80734e0d88fc485dc9 /Makefile
parent3297b8d53acb1725b41db4123c6f84d00f3ebf40 (diff)
downloadgitea-38889f09cbe039217f159838961b631f8f8d3b46.tar.gz
gitea-38889f09cbe039217f159838961b631f8f8d3b46.zip
Fix cross-compile builds (#6609)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 8 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 33ce665328..b3415aaaf5 100644
--- a/Makefile
+++ b/Makefile
@@ -4,6 +4,8 @@ export GO111MODULE=off
GO ?= go
SED_INPLACE := sed -i
+SHELL ?= bash
+SHASUM ?= shasum -a 256
export PATH := $($(GO) env GOPATH)/bin:$(PATH)
@@ -332,7 +334,7 @@ release-windows:
fi
xgo -dest $(DIST)/binaries -tags 'netgo $(TAGS)' -ldflags '-linkmode external -extldflags "-static" $(LDFLAGS)' -targets 'windows/*' -out gitea-$(VERSION) .
ifeq ($(CI),drone)
- mv /build/* $(DIST)/binaries
+ cp /build/* $(DIST)/binaries
endif
.PHONY: release-linux
@@ -342,7 +344,7 @@ release-linux:
fi
xgo -dest $(DIST)/binaries -tags 'netgo $(TAGS)' -ldflags '-linkmode external -extldflags "-static" $(LDFLAGS)' -targets 'linux/*' -out gitea-$(VERSION) .
ifeq ($(CI),drone)
- mv /build/* $(DIST)/binaries
+ cp /build/* $(DIST)/binaries
endif
.PHONY: release-darwin
@@ -352,23 +354,23 @@ release-darwin:
fi
xgo -dest $(DIST)/binaries -tags 'netgo $(TAGS)' -ldflags '$(LDFLAGS)' -targets 'darwin/*' -out gitea-$(VERSION) .
ifeq ($(CI),drone)
- mv /build/* $(DIST)/binaries
+ cp /build/* $(DIST)/binaries
endif
.PHONY: release-copy
release-copy:
- $(foreach file,$(wildcard $(DIST)/binaries/$(EXECUTABLE)-*),cp $(file) $(DIST)/release/$(notdir $(file));)
+ cd $(DIST); for file in `find /build -type f -name "*"`; do cp $${file} ./release/; done;
.PHONY: release-check
release-check:
- cd $(DIST)/release; $(foreach file,$(wildcard $(DIST)/release/$(EXECUTABLE)-*),sha256sum $(notdir $(file)) > $(notdir $(file)).sha256;)
+ cd $(DIST)/release/; for file in `find . -type f -name "*"`; do $(SHASUM) $${file:2} > $${file}.sha256; done;
.PHONY: release-compress
release-compress:
@hash gxz > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
$(GO) get -u github.com/ulikunitz/xz/cmd/gxz; \
fi
- cd $(DIST)/release; $(foreach file,$(wildcard $(DIST)/binaries/$(EXECUTABLE)-*),gxz -k -9 $(notdir $(file));)
+ cd $(DIST)/release/; for file in `find . -type f -name "*"`; do echo "compressing $${file}" && gxz -k -9 $${file}; done;
.PHONY: javascripts
javascripts: public/js/index.js