Upgrade to go v1.13

This commit is contained in:
Rui Chen 2019-09-27 23:14:38 -04:00
parent 4ae28b9f06
commit 2a01d66957
3 changed files with 8 additions and 7 deletions

View File

@ -1,5 +1,4 @@
language: go language: go
sudo: required
env: env:
global: global:
@ -11,7 +10,7 @@ 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
@ -19,7 +18,7 @@ matrix:
- go: master - go: master
before_install: before_install:
- make go-dependencies - make go-dependencies
jobs: jobs:
include: include:

View File

@ -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
View File

@ -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