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

21 lines
481 B
Groovy

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