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 } } } } } } }