Jenkins sh 标签:"sh" 的参数必须明确命名
Jekins sh label: Arguments to "sh" must be explicitly named
我知道
但是当使用
sh "echo foo", label: "my step"
我会收到以下错误:
Arguments to "sh" must be explicitly named
我确保安装了 Pipeline: Nodes and Processes v2.28,并且我使用的是声明式管道。
我自己查出来的,一定是:
sh script: "echo foo", label: "my step"
我知道
但是当使用
sh "echo foo", label: "my step"
我会收到以下错误:
Arguments to "sh" must be explicitly named
我确保安装了 Pipeline: Nodes and Processes v2.28,并且我使用的是声明式管道。
我自己查出来的,一定是:
sh script: "echo foo", label: "my step"