您可以使用
<<运算符来追加节点,否则将替换具有相同名称的现有节点。有关详细信息,请参见Job DSL
Wiki。
job { name('foo') steps { shell('echo AAA') } configure { it / builders << 'hudson.plugins.xshell.XShellBuilder' { commandLine('123') } } steps { shell('echo BBB') } configure { it / builders << 'hudson.plugins.xshell.XShellBuilder' { commandLine('456') } }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)