您可以像
branches先定义节点图一样,然后将其执行为
parallel branches。
def numNodes = 4def branches = [:]for(int i = 0; i < numNodes; i++) { branches["node${i}"] = { node("namenode-${i}") { something() } }}parallel branches
欢迎分享,转载请注明来源:内存溢出
您可以像
branches先定义节点图一样,然后将其执行为
parallel branches。
def numNodes = 4def branches = [:]for(int i = 0; i < numNodes; i++) { branches["node${i}"] = { node("namenode-${i}") { something() } }}parallel branches
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)