jenkins-libraries/vars/test.groovy
2022-03-04 09:24:09 -06:00

21 lines
470 B
Groovy

def call(body) {
def config = [:]
body.resolveStrategy = Closure.DELEGATE_FIRST
body.delegate = config
body ()
def reposConfig = [:]
config.reposConfig.each{repo ->
reposConfig = [
gitBranch: repo.value.gitBranch,
gitRepo: repo.value.gitRepo,
gitCreds: repo.value.gitCreds
]
}
reposConfig.each{repo ->
echo "Map Element ${index} (${repo.key}): ${repo.value.gitRepo}"
}
}