forked from denisbr/cheatsheet-jenkins-groovy-A4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
loop-map.groovy
executable file
·34 lines (32 loc) · 969 Bytes
/
loop-map.groovy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!groovy
//-------------------------------------------------------------------
// @copyright 2018 DennyZhang.com
// Licensed under MIT
// https://www.dennyzhang.com/wp-content/mit_license.txt
//
// File: loop-map.groovy
// Author : Denny <https://www.dennyzhang.com/contact>
// Link: https://cheatsheet.dennyzhang.com/cheatsheet-jenkins-groovy-a4
// --
// Created : <2018-04-20>
// Updated: Time-stamp: <2019-04-29 15:42:59>
//-------------------------------------------------------------------
def sampleMap = ['Key#1':'Value#1', 'Key#2':'Value#2']
println sampleMap['Key#1']
node{
// itertate over stages
for (key in sampleMap.keySet()){
val = "${sampleMap[key]}"
println key
println val
stage('Run Key'){
println "Ran ${key}"
}
stage('Ran Value for that Key'){
println "Ran ${val}"
}
stage('Clean Up'){
println "Ran Some sort of Cleanup"
}
}
}