Jenkins: add cleanup for finalize stage

This commit is contained in:
Runar Borge 2021-04-04 10:44:44 +02:00
parent 68007b92d6
commit a3fc5bd3b2

View File

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