7 lines
198 B
Groovy
7 lines
198 B
Groovy
void call(stepName) {
|
|
def bannerWidth = stepName.length() + 6
|
|
def banner = "+${'-'.multiply(bannerWidth)}+"
|
|
def stepBanner = "| $stepName |"
|
|
echo "$banner\n$stepBanner\n$banner"
|
|
}
|