Error: The parallel step can only be used as the only top-level step

前端 未结 2 1648
自闭症患者
自闭症患者 2020-12-31 16:21

When I use this script it works as expected:

stage(\"B\") {
    parallel (
        \'C\' : { 
            stage (\"BC\") {
                parallel (
                


        
2条回答
  •  清酒与你
    2020-12-31 16:57

    As Jenkins docs say, you cannot nest parallel directives:

    The nested stages cannot contain further parallel stages themselves, ...

提交回复
热议问题