From d685e888724549e1a6a03995d19ce9264d7dedf1 Mon Sep 17 00:00:00 2001 From: Abhisek Dwivedi Date: Tue, 3 Sep 2024 17:09:36 +0530 Subject: [PATCH] Bumped golang version in Jenkins --- Jenkinsfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a34b36e1..5557c767 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,14 +1,12 @@ pipeline { agent any tools { - go 'go-1.21' + go 'go-1.22' } environment { GOPATH="/var/lib/jenkins/go" - // Operator sdk command "operator-sdk" should be present in PATH or at - // /usr/local/operator-sdk-1.28.0/ - PATH="/usr/local/operator-sdk-1.28.0/:${GOPATH}/bin:/usr/local/bin:${env.PATH}" + PATH="${GOPATH}/bin:/usr/local/bin:${env.PATH}" GO_REPO_ROOT="${env.GOPATH}/src/github.com" GO_REPO="${env.GO_REPO_ROOT}/aerospike-kubernetes-operator" DOCKER_REGISTRY="docker.io"