0

我们如何在 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”关键字,但它不起作用。

4

1 回答 1

0

在声明式管道中,您不能在并行步骤中运行阶段,因为步骤是阶段指令的一部分。声明式流程就像阶段 -> 阶段 -> 步骤 -> 您执行的实际步骤。

但是,您可以在脚本化管道中实现它。一个示例如下:

node(){
    parallel first:{
    stage('stage1'){
        echo 'helloworld'
    }
    },
    second:{
    stage('stage2'){
        echo 'helloworld2'
    }
    }
}
于 2017-03-30T11:56:17.843 回答