Skip to content
Snippets Groups Projects
Commit 40f1dfec authored by Sebastian Meiling's avatar Sebastian Meiling Committed by GitHub
Browse files

Merge pull request #6365 from cgundogan/pr/jenkins_delete_workspace

jenkins: delete workspace after build
parents 3999d08f e40a271d
No related branches found
No related tags found
No related merge requests found
......@@ -69,6 +69,8 @@ node ('master') {
}
step([$class: 'ArtifactArchiver', artifacts: "*_static-tests.log", fingerprint: true, allowEmptyArchive: true])
}
deleteDir()
}
stage("unittests") {
......@@ -192,6 +194,8 @@ def make_build(label, board, desc, arg)
} catch(e) {
echo "${e.toString()}"
currentBuild.result = 'FAILURE'
} finally {
deleteDir()
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment