mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
Jenkinsfile update (#1474)
* Updating Jenkinsfile for a more thorough cleanup * adding steps to the clean stage * jk, maybe we don't want to do an initial clean... * how about now? * okay, surely now
This commit is contained in:
parent
738268a79a
commit
7100b17e5f
1 changed files with 9 additions and 1 deletions
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
|
@ -62,7 +62,15 @@ pipeline {
|
|||
}
|
||||
post {
|
||||
always {
|
||||
cleanWs()
|
||||
echo "Finished, deleting directory."
|
||||
deleteDir()
|
||||
}
|
||||
cleanup {
|
||||
echo "Clean up in post."
|
||||
cleanWs(cleanWhenNotBuilt: false,
|
||||
deleteDirs: true,
|
||||
disableDeferredWipeout: true,
|
||||
notFailBuild: true)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue