this is a mess

This commit is contained in:
Jim Nicholson 2024-02-07 02:25:41 -08:00
parent 0803dfae5d
commit ccda216aee
3 changed files with 1 additions and 5 deletions

View File

@ -9,7 +9,7 @@ void call(Map config = [:], Closure body) {
] ]
Map runConfig = defaults + config Map runConfig = defaults + config
stage(runConfig.stepName) { stage(runConfig.stepName) {
makeStepBanner(runConfig.stepName) echo "${runConfig.stepName}"
if (runConfig.saveArtifacts) { if (runConfig.saveArtifacts) {
assert runConfig.artifacts : 'Error: saveArtifacts is set to true; must specify artifacts!' assert runConfig.artifacts : 'Error: saveArtifacts is set to true; must specify artifacts!'
} }

View File

@ -8,7 +8,6 @@ void call(Map config = [:], Closure body) {
echo 'Firing ...' echo 'Firing ...'
runConfig = defaults + config runConfig = defaults + config
stage(runConfig.stepName) { stage(runConfig.stepName) {
makeStepBanner(runConfig.stepName)
if (runConfig.useJobSCM) { if (runConfig.useJobSCM) {
checkout scm checkout scm
} }

View File

@ -1,3 +0,0 @@
void makeStepBanner(String msg) {
echo msg
}