1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-07-17 18:50:48 +08:00

Merge pull request from ipfs/ci/cleanup-ws

ci: call cleanWs after each step
This commit is contained in:
Steven Allen
2018-08-13 02:15:16 +00:00
committed by GitHub

4
ci/Jenkinsfile vendored

@ -48,7 +48,11 @@ def setupStep(nodeLabel, f) {
def run = nodeLabel != 'windows' ? this.&sh : this.&bat def run = nodeLabel != 'windows' ? this.&sh : this.&bat
try {
f(run) f(run)
} finally {
cleanWs()
}
} }
} }
} }