Revamp stages and restructure project #1

Merged
jim merged 32 commits from newstage into master 2024-02-08 02:22:21 +00:00
2 changed files with 8 additions and 11 deletions
Showing only changes of commit 24f432256a - Show all commits

View File

@ -1,6 +0,0 @@
class Versioner {
}

View File

@ -1,6 +1,9 @@
void printBanner(String anything) {
boxCorner = '+'
repetitions = anything.length() + 2
boxTop = boxCorner + '=' * repetitions + boxCorner
echo "${boxTop}\n| ${anything} |\n${boxTop}\n"
def printStepBanner(stepName) {
def bannerWidth = stepName.length() + 6
def banner = "+${'-'.multiply(bannerWidth)}+"
def stepBanner = "| $stepName |"
echo banner
echo stepBanner
echo banner
}