Jenkins: add cleanup for finalize stage

(cherry picked from commit a3fc5bd3b2717a08c45e78fb9c0b0aeabe206ef3)
This commit is contained in:
Runar Borge 2021-04-04 10:44:44 +02:00 committed by Christian Poessinger
parent d55f2bde80
commit 272825480a

View File

@ -144,6 +144,11 @@ def call(description=null, pkgList=null, buildCmd=null) {
}
}
}
post {
cleanup {
deleteDir()
}
}
}
}
}