我正在尝试使用 DSL 来生成使用copyArtifacts
. 我已经能够Copy artifact from another project
使用以下内容生成基本内容:
job('DSL-AgreegateArtifacts') {
steps {
copyArtifacts( 'Template-DSPL_RPub' )
}
}
但是我还需要能够指定Which build
,Artifacts to copy
和Target directory
. 我不清楚我如何使用Closure copyArtifactClosure
来指定这些信息?我没有找到任何例子。