1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-24 05:59:55 +08:00

ci: call cleanWs after each step

License: MIT
Signed-off-by: Łukasz Magiera <magik6k@gmail.com>
This commit is contained in:
Łukasz Magiera
2018-08-12 15:50:54 +02:00
parent 6899b1f151
commit d6ac920feb

4
ci/Jenkinsfile vendored
View File

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