Jenkins continue pipeline on failed stage

后端 未结 3 1111
盖世英雄少女心
盖世英雄少女心 2021-01-06 05:10

I have a jenkins setup with a bunch of pipelines. I wrote a new pipeline which can start all pipelines at once. I would like to build other stages, even if one of them fails

3条回答
  •  醉梦人生
    2021-01-06 05:47

    What worked for me:

        'Task' : {
            build( job : "DemoJob-2", wait: false )
            build( job : "DemoJob-3", wait: false )
        }
    

提交回复
热议问题