Files
kubernetes/.travis.yml
Filipe Brandenburger 510cc8ecdc Revert "change travis.yml to install godep"
This reverts commit 453c328fc9.

Having `godep` installed is not necessarily for build & test, only to
manage the dependencies under the Godeps/ tree.

Signed-off-by: Filipe Brandenburger <filbranden@google.com>
2014-08-27 17:16:27 -07:00

23 lines
451 B
YAML

language: go
go:
- 1.3
- 1.2
- tip
install:
- go get code.google.com/p/go.tools/cmd/cover
- go get github.com/coreos/etcd
- ./hack/verify-gofmt.sh
- ./hack/verify-boilerplate.sh
- ./hack/install-std-race.sh
- ./hack/build-go.sh
script:
- ./hack/test-go.sh
- PATH=$HOME/gopath/bin:$PATH ./hack/test-cmd.sh
- PATH=$HOME/gopath/bin:$PATH ./hack/test-integration.sh
notifications:
irc: "chat.freenode.net#google-containers"