Reorg travis.yml

This commit is contained in:
Taylor Gerring
2014-11-15 19:36:30 -06:00
parent 790ded0f47
commit 58812fad42
2 changed files with 4 additions and 6 deletions

8
install_deps.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
set -e
TEST_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 [ "$TEST_DEPS" ]; then
go get -race $TEST_DEPS
fi