mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
17 lines
409 B
YAML
17 lines
409 B
YAML
|
before_install:
|
||
|
- ./install-protobuf.sh
|
||
|
- PATH=/home/travis/bin:$PATH protoc --version
|
||
|
- go get github.com/gogo/protobuf/protoc-gen-gogo/descriptor
|
||
|
- go get github.com/gogo/protobuf/types
|
||
|
- go get github.com/gogo/protobuf/protoc-gen-gogotypes
|
||
|
- go get github.com/gogo/protobuf/gogoreplace
|
||
|
- echo $TRAVIS_GO_VERSION
|
||
|
|
||
|
script:
|
||
|
- PATH=/home/travis/bin:$PATH make test
|
||
|
|
||
|
language: go
|
||
|
|
||
|
go:
|
||
|
- 1.9.x
|