From bf18188707043739cb989583f0c580d31d370762 Mon Sep 17 00:00:00 2001 From: Andrea Franz Date: Tue, 19 Oct 2021 12:47:45 +0200 Subject: [PATCH] remove GOCACHE = "off" for CI --- _assets/ci/Jenkinsfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/_assets/ci/Jenkinsfile b/_assets/ci/Jenkinsfile index 5d6d647..400f128 100644 --- a/_assets/ci/Jenkinsfile +++ b/_assets/ci/Jenkinsfile @@ -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 */ } }