29 lines
642 B
YAML
29 lines
642 B
YAML
sudo: false
|
|
|
|
language: go
|
|
|
|
matrix:
|
|
include:
|
|
- go: 1.4
|
|
|
|
install:
|
|
- go get github.com/tools/godep
|
|
- ./hack/travis/install-etcd.sh
|
|
- ./hack/build-go.sh
|
|
- export PATH=$GOPATH/bin:./third_party/etcd:$PATH
|
|
|
|
script:
|
|
- ./hack/verify-gofmt.sh
|
|
- ./hack/verify-boilerplate.sh
|
|
- ./hack/verify-description.sh
|
|
- ./hack/verify-generated-conversions.sh
|
|
- ./hack/verify-generated-deep-copies.sh
|
|
- ./hack/verify-generated-docs.sh
|
|
- ./hack/verify-swagger-spec.sh
|
|
- ./hack/verify-linkcheck.sh
|
|
- ./hack/verify-flags-underscore.py
|
|
- ./hack/verify-godeps.sh $TRAVIS_BRANCH
|
|
|
|
notifications:
|
|
irc: "chat.freenode.net#kubernetes-dev"
|