Upgrade to go v1.13
This commit is contained in:
parent
4ae28b9f06
commit
2a01d66957
|
|
@ -1,5 +1,4 @@
|
||||||
language: go
|
language: go
|
||||||
sudo: required
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
|
|
@ -11,15 +10,15 @@ env:
|
||||||
- KUBECONFIG=$HOME/.kube/config
|
- KUBECONFIG=$HOME/.kube/config
|
||||||
|
|
||||||
go:
|
go:
|
||||||
- 1.12.x
|
- 1.13.x
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
fast_finish: true
|
fast_finish: true
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- go: master
|
- go: master
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- make go-dependencies
|
- make go-dependencies
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
# Setup variables for the Makefile
|
# Setup variables for the Makefile
|
||||||
NAME=kubernetes-operator
|
NAME=kubernetes-operator
|
||||||
OPERATOR_SDK_VERSION=0.10.0
|
OPERATOR_SDK_VERSION=0.10.0
|
||||||
GO_VERSION=1.12.6
|
GO_VERSION=1.13.1
|
||||||
PKG=github.com/jenkinsci/kubernetes-operator
|
PKG=github.com/jenkinsci/kubernetes-operator
|
||||||
DOCKER_ORGANIZATION=virtuslab
|
DOCKER_ORGANIZATION=virtuslab
|
||||||
DOCKER_REGISTRY=jenkins-operator
|
DOCKER_REGISTRY=jenkins-operator
|
||||||
|
|
|
||||||
2
go.mod
2
go.mod
|
|
@ -1,5 +1,7 @@
|
||||||
module github.com/jenkinsci/kubernetes-operator
|
module github.com/jenkinsci/kubernetes-operator
|
||||||
|
|
||||||
|
go 1.13
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/bndr/gojenkins v0.0.0-20181125150310-de43c03cf849
|
github.com/bndr/gojenkins v0.0.0-20181125150310-de43c03cf849
|
||||||
github.com/docker/distribution v2.7.1+incompatible
|
github.com/docker/distribution v2.7.1+incompatible
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue