aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-04-29 19:43:38 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-04-29 19:43:38 +0800
commitbac4440e1751fd3b71f8271260d1c8af236d2cec (patch)
tree7244f37c5c6120ecfb2afd996495bbb4a4810d7e /.travis.yml
parent32373e3837c5fc3def8050d6de8be34946a3fd75 (diff)
parentaa03e53ca8d55e74e562f5f56d90e4fd2579fb4e (diff)
downloaddexon-bac4440e1751fd3b71f8271260d1c8af236d2cec.tar
dexon-bac4440e1751fd3b71f8271260d1c8af236d2cec.tar.gz
dexon-bac4440e1751fd3b71f8271260d1c8af236d2cec.tar.bz2
dexon-bac4440e1751fd3b71f8271260d1c8af236d2cec.tar.lz
dexon-bac4440e1751fd3b71f8271260d1c8af236d2cec.tar.xz
dexon-bac4440e1751fd3b71f8271260d1c8af236d2cec.tar.zst
dexon-bac4440e1751fd3b71f8271260d1c8af236d2cec.zip
Merge pull request #822 from fjl/makefile-improvements
Makefile improvements
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 3 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index d6954e0cb..b0f295fb6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,13 +4,12 @@ go:
before_install:
- sudo add-apt-repository ppa:beineri/opt-qt541 -y
- sudo apt-get update -qq
- - sudo apt-get install -yqq libgmp3-dev libreadline6-dev qt54quickcontrols qt54webengine
+ - sudo apt-get install -yqq libgmp3-dev qt54quickcontrols qt54webengine
install:
# - go get code.google.com/p/go.tools/cmd/goimports
# - go get github.com/golang/lint/golint
# - go get golang.org/x/tools/cmd/vet
- - go get golang.org/x/tools/cmd/cover
- - go get github.com/mattn/goveralls
+ - go get golang.org/x/tools/cmd/cover github.com/mattn/goveralls
before_script:
# - gofmt -l -w .
# - goimports -l -w .
@@ -18,7 +17,7 @@ before_script:
# - go vet ./...
# - go test -race ./...
script:
- - ./gocoverage.sh
+ - make travis-test-with-coverage
after_success:
- if [ "$COVERALLS_TOKEN" ]; then goveralls -coverprofile=profile.cov -service=travis-ci -repotoken $COVERALLS_TOKEN; fi
env: