Jenkins Pipeline sh display name/label

后端 未结 8 1376

With Jenkins 2 Pipeline plugin, there\'s a useful feature allowing a quick overview of the pipeline stages and status of steps, including logging output.

However, if

8条回答
  •  情书的邮戳
    2020-12-24 05:28

    Well, desperate times call for desperate measures. If you can use Blue Ocean, you can use parallel step with single execution line.

            parallel(
                "This is my step name" : {
                    sh 'env'
                }
            )
    

提交回复
热议问题