4
如何使用声明性管道正确实现动态并行操作?
当前,我将需要一个实现,该实现必须找到目录中的所有文件并为找到的每个文件启动并行任务。 是否可以使用声明性管道来实现这一目标? pipeline { agent any stages { stage("test") { steps { dir ("file_path") { // find all files with complete path parallel ( // execute parallel tasks for each file found. // this must be dynamic } } } } } } }