現在、ディレクトリ内のすべてのファイルを検索し、見つかったすべてのファイルに対して並列タスクを開始する必要がある実装が必要になります。
宣言的なパイプラインを使用してこれを達成することは可能ですか?
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
}
}
}
}
}
}
}
並列ではなく複数のステップを連続して実行したい場合はどうすればよいですか?
—
フランクエスコバル