错误:找不到名为Go 1.8的go
通过管道在jenkins / jenkins Docker容器上安装go插件时,我遇到此错误。
我使用以下管道代码来安装go插件。任何想法都欢迎。 我也尝试了其他go版本。像1.6、1.9一样,仍然面临相同的问题。
stages {
stage('Install Go') {
steps {
script {
def root = tool name: 'Go 1.7.6', type: 'go'
// Export environment variables pointing to the directory where Go was installed
withEnv(["GOROOT=${root}", "PATH+GO=${root}/bin"]) {
sh 'go version'
}
}
}