Use Makefile for Travis tests

This commit is contained in:
Felix Lange
2015-04-29 01:27:47 +02:00
parent c6b983e449
commit aa03e53ca8
5 changed files with 37 additions and 36 deletions

View File

@ -2,7 +2,7 @@
# with Go source code. If you know what GOPATH is then you probably
# don't need to bother with make.
.PHONY: geth mist test clean
.PHONY: geth mist all test travis-test-with-coverage clean
GOBIN = build/bin
geth:
@ -21,5 +21,8 @@ all:
test: all
build/env.sh go test ./...
travis-test-with-coverage: all
build/env.sh build/test-global-coverage.sh
clean:
rm -fr build/_workspace/pkg/ Godeps/_workspace/pkg $(GOBIN)/*