Initial commit

This commit is contained in:
Daniel Weissmall 2023-12-01 14:33:31 +03:00
commit 85c40aed83

6
helpers.groovy Normal file
View File

@ -0,0 +1,6 @@
def stageWithChecks(String name, Closure body) {
stage(name) {
body()
setSuccessCheck(name, name)
}
}