pipelineUtils/vars/printBanner.groovy
2024-02-07 04:22:47 -08:00

10 lines
209 B
Groovy

def call(stepName) {
def bannerWidth = stepName.length() + 6
def banner = "+${'-'.multiply(bannerWidth)}+"
def stepBanner = "| $stepName |"
echo banner
echo stepBanner
echo banner
}