22 lines
400 B
YAML
22 lines
400 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/integration-test.sh
|
|
|
|
notifications:
|
|
irc: "chat.freenode.net#google-containers"
|