Skip to content

Commit

Permalink
retry loops on package fetches during install
Browse files Browse the repository at this point in the history
  • Loading branch information
jaqx0r committed Apr 20, 2015
1 parent 10ae869 commit 8c07666
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ before_install:
# detected. Also install three tools for measuring coverage and sending to
# coveralls.io.
install:
- go get -t ./...
- go get golang.org/x/tools/cmd/cover
- go get github.com/modocache/gover
- go get github.com/mattn/goveralls
- until go get -t -v ./... ; do sleep 1; done
- until go get golang.org/x/tools/cmd/cover; do sleep 1; done
- until go get github.com/modocache/gover; do sleep 1; done
- until go get github.com/mattn/goveralls; do sleep 1; done

# Run all tests, under race detector.
script: make testrace
Expand Down

0 comments on commit 8c07666

Please sign in to comment.