10 lines
256 B
Groovy
10 lines
256 B
Groovy
def setSuccessCheck(String name, String title) {
|
|
publishChecks name: name, title: title, summary: '— Successful', conclusion: "SUCCESS"
|
|
}
|
|
|
|
def stageWithChecks(String name, Closure body) {
|
|
stage(name) {
|
|
body()
|
|
setSuccessCheck(name, name)
|
|
}
|
|
} |