remove GOCACHE = "off" for CI
This commit is contained in:
parent
ea1ff04f7b
commit
bf18188707
|
@ -27,14 +27,13 @@ pipeline {
|
|||
|
||||
stage('Test') {
|
||||
agent {
|
||||
docker {
|
||||
docker {
|
||||
label 'linux'
|
||||
image 'statusteam/keycard-cli-ci:latest'
|
||||
args '--entrypoint=""' /* allows jenkins use cat */
|
||||
}
|
||||
}
|
||||
environment {
|
||||
GOCACHE = "off"
|
||||
GOPATH = "${env.WORKSPACE}"
|
||||
PATH = "${env.PATH}:${env.GOPATH}/bin"
|
||||
}
|
||||
|
@ -71,7 +70,7 @@ pipeline {
|
|||
}
|
||||
}
|
||||
post {
|
||||
always {
|
||||
always {
|
||||
cleanWs() /* we can't use `make clean` because xgo creates root files */
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue