mirror of https://github.com/commaai/panda.git
cleanup docker container on failure
This commit is contained in:
parent
04756a037f
commit
70d4fd7f64
|
@ -61,6 +61,11 @@ pipeline {
|
|||
}
|
||||
}
|
||||
post {
|
||||
failure {
|
||||
script {
|
||||
sh "docker rm ${env.DOCKER_NAME} || true"
|
||||
}
|
||||
}
|
||||
always {
|
||||
junit "test_results*.xml"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue