aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2020-01-22 14:14:24 +0100
committerMichael Muré <batolettre@gmail.com>2020-01-22 14:14:24 +0100
commit20080aa0e485412b07e1942798b264030e744381 (patch)
treead1b2be3927ec11bb18a08a5428de11aecacc1ca
parent00b1bd04347570f42492f9ce48b7d2093f14a657 (diff)
downloadgit-bug-20080aa0e485412b07e1942798b264030e744381.tar.gz
fix version not set properly when built on travis
-rw-r--r--.travis.yml2
-rw-r--r--Makefile6
2 files changed, 6 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index cac34dc7..338fff2b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -39,7 +39,7 @@ before_install:
- go get github.com/mitchellh/gox
after_success:
- - if [ ! -z "$TRAVIS_TAG" ]; then gox -output "dist/{{.Dir}}_{{.OS}}_{{.Arch}}"; fi
+ - if [ ! -z "$TRAVIS_TAG" ]; then make releases; fi
deploy:
provider: releases
diff --git a/Makefile b/Makefile
index 9d0e24ec..81b0f7ce 100644
--- a/Makefile
+++ b/Makefile
@@ -27,6 +27,10 @@ install:
go generate
go install -ldflags "$(LDFLAGS)" .
+releases:
+ go generate
+ gox -ldflags "$(LDFLAGS)" -output "dist/{{.Dir}}_{{.OS}}_{{.Arch}}"
+
test:
go test -v -bench=. ./...
@@ -51,4 +55,4 @@ clean-local-identities:
git for-each-ref refs/remotes/origin/identities/ | cut -f 2 | $(XARGS) -n 1 git update-ref -d
rm -f .git/git-bug/identity-cache
-.PHONY: build install test pack-webui debug-webui clean-local-bugs clean-remote-bugs
+.PHONY: build install releases test pack-webui debug-webui clean-local-bugs clean-remote-bugs