aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-02-06 06:03:29 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-02-06 06:03:29 +0800
commit03b89ab712227ff42a53614f74b00f723cce5a70 (patch)
tree26fb328411683d8fad1580778fa26023b954c668 /.travis.yml
parentae3e9d488136f3607f64b18dd81de5c9331f5440 (diff)
downloaddexon-03b89ab712227ff42a53614f74b00f723cce5a70.tar
dexon-03b89ab712227ff42a53614f74b00f723cce5a70.tar.gz
dexon-03b89ab712227ff42a53614f74b00f723cce5a70.tar.bz2
dexon-03b89ab712227ff42a53614f74b00f723cce5a70.tar.lz
dexon-03b89ab712227ff42a53614f74b00f723cce5a70.tar.xz
dexon-03b89ab712227ff42a53614f74b00f723cce5a70.tar.zst
dexon-03b89ab712227ff42a53614f74b00f723cce5a70.zip
Only download missing deps, not build
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index d3ee1e8af..5a41cdcc6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -12,7 +12,7 @@ install:
- 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 $ETH_DEPS; fi
+ - 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
before_script:
- gofmt -l -w .
- goimports -l -w .