Skip to content

Commit

Permalink
Upgrade go version to 1.14.4
Browse files Browse the repository at this point in the history
  • Loading branch information
RA489 committed Jul 7, 2020
1 parent 5e9bb01 commit 53a4d3a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
os: linux
language: go
go:
- 1.13.9
- 1.14.4
env:
global:
- GOPROXY=https://proxy.golang.org
matrix:
include:
- language: go
name: Code Lint
go: 1.13.9
go: 1.14.4
env:
- TESTSUITE=lintall
before_install:
Expand All @@ -20,7 +20,7 @@ matrix:

- language: go
name: Unit Test
go: 1.13.9
go: 1.14.4
env:
- TESTSUITE=unittest
before_install:
Expand All @@ -29,7 +29,7 @@ matrix:

- language: go
name: Build
go: 1.13.9
go: 1.14.4
script: make
after_success:
- bash <(curl -s https://codecov.io/bash)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ DEB_VERSION ?= $(subst -,~,$(RAW_VERSION))
RPM_VERSION ?= $(DEB_VERSION)

# used by hack/jenkins/release_build_and_upload.sh and KVM_BUILD_IMAGE, see also BUILD_IMAGE below
GO_VERSION ?= 1.13.9
GO_VERSION ?= 1.14.4

INSTALL_SIZE ?= $(shell du out/minikube-windows-amd64.exe | cut -f1)
BUILDROOT_BRANCH ?= 2019.02.11
Expand Down
2 changes: 1 addition & 1 deletion hack/jenkins/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export KUBECONFIG="${TEST_HOME}/kubeconfig"
export PATH=$PATH:"/usr/local/bin/:/usr/local/go/bin/:$GOPATH/bin"

# installing golang so we could do go get for gopogh
sudo ./installers/check_install_golang.sh "1.13.9" "/usr/local" || true
sudo ./installers/check_install_golang.sh "1.14.4" "/usr/local" || true

docker rm -f -v $(docker ps -aq) >/dev/null 2>&1 || true
docker volume prune -f || true
Expand Down

0 comments on commit 53a4d3a

Please sign in to comment.