mirror of https://github.com/kubernetes/kops.git
Merge pull request #8940 from hakman/travis-golang-version
Use latest patch version for GO in tests
This commit is contained in:
commit
8ba02d9c7e
|
|
@ -4,8 +4,8 @@ os:
|
||||||
- osx
|
- osx
|
||||||
go:
|
go:
|
||||||
# 1.12 is no longer supported by apimachinery; we recommend 1.13
|
# 1.12 is no longer supported by apimachinery; we recommend 1.13
|
||||||
- "1.13"
|
- 1.13.x
|
||||||
- "1.14"
|
- 1.14.x
|
||||||
|
|
||||||
go_import_path: k8s.io/kops
|
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 GO 1.14 for OSX until it becomes the default because of limited availability
|
||||||
exclude:
|
exclude:
|
||||||
- os: osx
|
- os: osx
|
||||||
go: "1.14"
|
go: 1.14.x
|
||||||
|
|
||||||
include:
|
include:
|
||||||
- name: Verify
|
- name: Verify
|
||||||
os: linux
|
os: linux
|
||||||
go: "1.13"
|
go: 1.13.x
|
||||||
script:
|
script:
|
||||||
- GOPROXY=https://proxy.golang.org make travis-ci
|
- GOPROXY=https://proxy.golang.org make travis-ci
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue