testing pipeline functuion

This commit is contained in:
Hyatt 2022-03-04 09:23:06 -06:00
parent 577750b0d8
commit bc3fc3ccfa
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

20
vars/test.groovy Normal file
View File

@ -0,0 +1,20 @@
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}"
}
}