diff options
author | obscuren <geffobscura@gmail.com> | 2015-02-12 02:22:38 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-02-12 02:22:38 +0800 |
commit | 1fc3524e40ced2e780f6b90fa4ca7725c839976f (patch) | |
tree | 1d3508d967c9269fd89b0fa2d45313e4c821c170 /.travis.yml | |
parent | df49c609a0fd055a4f0dac89db6863ad5532228f (diff) | |
parent | ebc506dae8a15e5dcce4e4369e21d04e3b8f9aa4 (diff) | |
download | go-tangerine-1fc3524e40ced2e780f6b90fa4ca7725c839976f.tar go-tangerine-1fc3524e40ced2e780f6b90fa4ca7725c839976f.tar.gz go-tangerine-1fc3524e40ced2e780f6b90fa4ca7725c839976f.tar.bz2 go-tangerine-1fc3524e40ced2e780f6b90fa4ca7725c839976f.tar.lz go-tangerine-1fc3524e40ced2e780f6b90fa4ca7725c839976f.tar.xz go-tangerine-1fc3524e40ced2e780f6b90fa4ca7725c839976f.tar.zst go-tangerine-1fc3524e40ced2e780f6b90fa4ca7725c839976f.zip |
Merge branch 'develop' of github.com-obscure:ethereum/go-ethereum into develop
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 4659503e9..0084bf9c2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,8 +11,8 @@ install: # - go get golang.org/x/tools/cmd/vet - if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi - go get github.com/mattn/goveralls - - go get -d github.com/obscuren/qml && cd $HOME/gopath/src/github.com/obscuren/qml && git checkout v1 && cd $TRAVIS_BUILD_DIR - - ETH_DEPS=$(go list -f '{{.Imports}} {{.TestImports}} {{.XTestImports}}' github.com/ethereum/go-ethereum/... | sed -e 's/\[//g' | sed -e 's/\]//g' | sed -e 's/C //g'); if [ "$ETH_DEPS" ]; then go get -d $ETH_DEPS; fi + - go get gopkg.in/check.v1 + - DEPS=$(go list -f '{{.Imports}}' ./... | sed -e 's/\[//g' | sed -e 's/\]//g' | sed -e 's/C //g'); if [ "$DEPS" ]; then go get -d -v $DEPS; fi before_script: - gofmt -l -w . - goimports -l -w . @@ -20,7 +20,9 @@ before_script: # - go vet ./... # - go test -race ./... script: - - ./gocoverage.sh && if [ "$COVERALLS_TOKEN" ]; then goveralls -coverprofile=profile.cov -service=travis-ci -repotoken $COVERALLS_TOKEN; fi + - ./gocoverage.sh +after_success: + - if [ "$COVERALLS_TOKEN" ]; then goveralls -coverprofile=profile.cov -service=travis-ci -repotoken $COVERALLS_TOKEN; fi env: global: - PKG_CONFIG_PATH=/opt/qt54/lib/pkgconfig |