1
0
Fork 0
mirror of https://github.com/Luzifer/git-changerelease.git synced 2024-10-18 06:04:20 +00:00
git-changerelease/Makefile
Knut Ahlers e3808deb0d
Add integration tests
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2017-05-31 14:51:23 +02:00

22 lines
702 B
Makefile

SHARNESS_VERSION=v1.0.0
publish:
curl -sSLo golang.sh https://raw.githubusercontent.com/Luzifer/github-publish/master/golang.sh
bash golang.sh
update-sharness:
curl -sSLo ./integration/sharness.sh https://cdn.rawgit.com/chriscool/sharness/$(SHARNESS_VERSION)/sharness.sh
curl -sSLo ./integration/aggregate-results.sh https://cdn.rawgit.com/chriscool/sharness/$(SHARNESS_VERSION)/aggregate-results.sh
curl -sSLo ./integration/Makefile https://cdn.rawgit.com/chriscool/sharness/$(SHARNESS_VERSION)/test/Makefile
test:
go test .
go vet .
integration: install
cd integration && make all
install: test
go install -a -ldflags="-X main.version=$(shell git describe --tags)"
.PHONY: integration