ensure go is in the PATH for jenkins builds

This commit is contained in:
Grant Limberg 2020-02-03 13:57:03 -08:00
parent a0efea8e0f
commit c537955c65
No known key found for this signature in database
GPG key ID: 2BA62CCABBB4095A

3
Jenkinsfile vendored
View file

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