Go 1.15 was released and is the major version that Kubernetes 1.19.0 is going to use. There are probably bugs in the older 1.13.3 that were fixed, so we should update.
22 lines
576 B
YAML
22 lines
576 B
YAML
language: go
|
|
sudo: required
|
|
services:
|
|
- docker
|
|
git:
|
|
depth: false
|
|
matrix:
|
|
include:
|
|
- go: 1.15
|
|
before_script:
|
|
- mkdir -p bin
|
|
- wget https://github.com/golang/dep/releases/download/v0.5.1/dep-linux-amd64 -O bin/dep
|
|
- chmod u+x bin/dep
|
|
- export PATH=$PWD/bin:$PATH
|
|
script:
|
|
- make -k all test GOFLAGS_VENDOR=$( [ -d vendor ] && echo '-mod=vendor' )
|
|
after_success:
|
|
- if [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
|
|
docker login -u "${DOCKER_USERNAME}" -p "${DOCKER_PASSWORD}" quay.io;
|
|
make push GOFLAGS_VENDOR=$( [ -d vendor ] && echo '-mod=vendor' );
|
|
fi
|