ci: use cleanup instead of always step in post steps
Simply appropriate. https://www.jenkins.io/doc/book/pipeline/syntax/#post Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
2c2337a45d
commit
4f60c31282
|
@ -96,6 +96,6 @@ pipeline {
|
|||
post {
|
||||
success { script { github.notifyPR(true) } }
|
||||
failure { script { github.notifyPR(false) } }
|
||||
always { cleanWs() }
|
||||
cleanup { cleanWs() }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -85,6 +85,6 @@ pipeline {
|
|||
post {
|
||||
success { script { github.notifyPR(true) } }
|
||||
failure { script { github.notifyPR(false) } }
|
||||
always { cleanWs() }
|
||||
cleanup { cleanWs() }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -108,6 +108,6 @@ pipeline {
|
|||
post {
|
||||
success { script { github.notifyPR(true) } }
|
||||
failure { script { github.notifyPR(false) } }
|
||||
always { cleanWs() }
|
||||
cleanup { cleanWs() }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -77,6 +77,6 @@ pipeline {
|
|||
post {
|
||||
success { script { github.notifyPR(true) } }
|
||||
failure { script { github.notifyPR(false) } }
|
||||
always { cleanWs() }
|
||||
cleanup { cleanWs() }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -144,6 +144,6 @@ pipeline {
|
|||
post {
|
||||
success { script { github.notifyPR(true) } }
|
||||
failure { script { github.notifyPR(false) } }
|
||||
always { cleanWs() }
|
||||
cleanup { cleanWs() }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -99,6 +99,6 @@ pipeline {
|
|||
post {
|
||||
success { script { github.notifyPR(true) } }
|
||||
failure { script { github.notifyPR(false) } }
|
||||
always { cleanWs(disableDeferredWipeout: true) }
|
||||
cleanup { cleanWs(disableDeferredWipeout: true) }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -78,6 +78,6 @@ pipeline {
|
|||
post {
|
||||
success { script { github.notifyPR(true) } }
|
||||
failure { script { github.notifyPR(false) } }
|
||||
always { cleanWs() }
|
||||
cleanup { cleanWs() }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue