我们如何在 Jenkins2.0 Pipeline 项目中并行运行两个阶段。例如:在下面的代码中,我想运行两个阶段以并行运行,即“Build_First_Repo”和“Build_Second_Repo”应该并行运行。
stage "Build_First_Repo"
node { sh '''echo 'Build first repo'
source ~/.bashrc'''
export path_to_perl_library="/path/to/perl/lib/perl5/5.8.8"
perl -I <include_files> build_first_view.pl --inputfile ${input_params}
}
stage "Build_Second_Repo"
node { sh '''echo 'Build second repo'
source ~/.bashrc'''
export path_to_perl_library="/path/to/perl/lib/perl5/5.8.8"
perl -I <include_files> build_second_view.pl --inputfile ${input_params}
}
我尝试使用“parallel”关键字,但它不起作用。