mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-07 00:17:13 +00:00
22 lines
491 B
YAML
22 lines
491 B
YAML
apt:
|
|
update: true
|
|
|
|
env:
|
|
- PROTOBUF_VERSION=2.6.1
|
|
- PROTOBUF_VERSION=3.0.2
|
|
- PROTOBUF_VERSION=3.6.1
|
|
|
|
before_install:
|
|
- ./install-protobuf.sh
|
|
- PATH=/home/travis/bin:$PATH protoc --version
|
|
|
|
script:
|
|
- PATH=/home/travis/bin:$PATH make buildserverall
|
|
- echo $TRAVIS_GO_VERSION
|
|
- if [[ "$PROTOBUF_VERSION" == "3.6.1" ]] && [[ "$TRAVIS_GO_VERSION" == "1.11.x" ]]; then ! git status --porcelain | read || (git status; git diff; exit 1); fi
|
|
|
|
language: go
|
|
|
|
go:
|
|
- 1.10.x
|
|
- 1.11.x
|