Merge pull request #8940 from hakman/travis-golang-version

Use latest patch version for GO in tests
This commit is contained in:
Kubernetes Prow Robot 2020-04-20 05:11:41 -07:00 committed by GitHub
commit 8ba02d9c7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -4,8 +4,8 @@ os:
- osx
go:
# 1.12 is no longer supported by apimachinery; we recommend 1.13
- "1.13"
- "1.14"
- 1.13.x
- 1.14.x
go_import_path: k8s.io/kops
@ -16,11 +16,11 @@ jobs:
# Exclude GO 1.14 for OSX until it becomes the default because of limited availability
exclude:
- os: osx
go: "1.14"
go: 1.14.x
include:
- name: Verify
os: linux
go: "1.13"
go: 1.13.x
script:
- GOPROXY=https://proxy.golang.org make travis-ci