diff options
author | obscuren <geffobscura@gmail.com> | 2014-12-22 21:46:32 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-12-22 21:46:32 +0800 |
commit | 60b1f9629cf422c4ea2244f673b90553407f1276 (patch) | |
tree | b887bd244985f8b4360f0b0edc9aacdcd3f07013 /.travis.yml | |
parent | 4051c0333f43765a7414a4e0e8ac51e7148b0646 (diff) | |
parent | e531c6fc6cb9c54969a85eca6642561dff958a27 (diff) | |
download | go-tangerine-60b1f9629cf422c4ea2244f673b90553407f1276.tar go-tangerine-60b1f9629cf422c4ea2244f673b90553407f1276.tar.gz go-tangerine-60b1f9629cf422c4ea2244f673b90553407f1276.tar.bz2 go-tangerine-60b1f9629cf422c4ea2244f673b90553407f1276.tar.lz go-tangerine-60b1f9629cf422c4ea2244f673b90553407f1276.tar.xz go-tangerine-60b1f9629cf422c4ea2244f673b90553407f1276.tar.zst go-tangerine-60b1f9629cf422c4ea2244f673b90553407f1276.zip |
Merge branch 'develop' into poc8
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index d09cbcdb0..21c15068b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: go go: - - 1.3 + - tip before_install: - sudo add-apt-repository ppa:ubuntu-sdk-team/ppa -y - sudo apt-get update -qq @@ -8,10 +8,10 @@ before_install: install: - go get code.google.com/p/go.tools/cmd/goimports - go get github.com/golang/lint/golint - # - go get code.google.com/p/go.tools/cmd/vet - - go get code.google.com/p/go.tools/cmd/cover + # - 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 - - ./install_deps.sh + - 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 $ETH_DEPS; fi before_script: - gofmt -l -w . - goimports -l -w . @@ -19,7 +19,7 @@ before_script: # - go vet ./... # - go test -race ./... script: - - ./gocoverage.sh && goveralls -coverprofile=profile.cov -service=travis-ci -repotoken $COVERALLS_TOKEN + - ./gocoverage.sh env: - secure: "U2U1AmkU4NJBgKR/uUAebQY87cNL0+1JHjnLOmmXwxYYyj5ralWb1aSuSH3qSXiT93qLBmtaUkuv9fberHVqrbAeVlztVdUsKAq7JMQH+M99iFkC9UiRMqHmtjWJ0ok4COD1sRYixxi21wb/JrMe3M1iL4QJVS61iltjHhVdM64=" |