From 15cf7dfb5b2947259ae96998cd0e90e11847b9a6 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Mon, 15 Jan 2018 13:41:39 +0100 Subject: [PATCH] Update go version in automation script Kubernetes api machinery only support go 1.8 onwards anymore. Update the CI go version from 1.7 to 1.9. Signed-off-by: Travis CI --- automation/test.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/automation/test.sh b/automation/test.sh index 3e705eae3980..1d3edf496ed5 100644 --- a/automation/test.sh +++ b/automation/test.sh @@ -40,7 +40,8 @@ fi VAGRANT_PREFIX=${VARIABLE:-kubevirt} # Install GO -eval "$(curl -sL https://raw.githubusercontent.com/travis-ci/gimme/master/gimme | GIMME_GO_VERSION=stable bash)" +export GIMME_GO_VERSION=1.9.2 +eval "$(curl -sL https://raw.githubusercontent.com/travis-ci/gimme/master/gimme | bash)" export WORKSPACE="${WORKSPACE:-$PWD}" export GOPATH="${GOPATH:-$WORKSPACE/go}" export GOBIN="${GOBIN:-$GOPATH/bin}"