概述
def actionTest = null
loadList = ["beijing", "chengdu","123","shanghai"," usa","jp","11.11.11.111","99.88.88.88"]
actionTest = loadList.collectEntries {
["开始数数 ${it}":load_test(it)]
}
def load_test(nodeIp) {
return {
print("开始执行测试...")
}
}
pipeline {
agent any
options {
timeout(time: 1, unit: 'MINUTES')
ansiColor('xterm')
// disableConcurrentBuilds()
}
//此处即可开始进行代码部署操作
stages {
stage("执行测试") {
steps {
script {
//
parallel actionTest //调用入口
sh 'sleep 1'
}
}
}
}
}
最后
以上就是伶俐洋葱为你收集整理的jenkinsfile遍历的全部内容,希望文章能够帮你解决jenkinsfile遍历所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复