From c537955c65b22b022efb89f4cd1e6cb6db78b469 Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Mon, 3 Feb 2020 13:57:03 -0800 Subject: [PATCH] ensure go is in the PATH for jenkins builds --- Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 757729e33..9958cd927 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,6 +7,9 @@ pipeline { parameters { booleanParam(name: "BUILD_ALL", defaultValue: false, description: "Build all supported platform/architecture combos. Defaults to x86/x64 only") } + environment { + PATH = "$PATH:/usr/local/go/bin:$HOME/go/bin" + } agent none