* First commit of CRI provider. Vendor deps not included * First commit of CRI provider. Vendor deps not included * Tidy up comments and format code * vendor grpc, CRI APIs, update protobuf and tidy logging * First commit of CRI provider. Vendor deps not included * Tidy up comments and format code * vendor grpc, CRI APIs, update protobuf and tidy logging * Add README * Fix errors in make test
13 lines
241 B
YAML
13 lines
241 B
YAML
language: go
|
|
go:
|
|
- 1.6
|
|
- 1.7
|
|
- 1.8
|
|
go_import_path: google.golang.org/genproto
|
|
|
|
script:
|
|
- go test -v ./...
|
|
- if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]]; then
|
|
go get -u -v cloud.google.com/go/...;
|
|
fi
|