如何防止Groovy中的Jenkins MultiLine字符串参数删除引号

时间:2019-06-17 17:29:44

标签: json jenkins groovy

在Jenkins中将“引号”中的值作为MultiLine String参数传递时,在Groovy管道中通过env.parameter_name访问该值时,引号会丢失。

参数内容:

{
"example_key" : "example value",
"another_key" : "another value"
}

行代码:

stage('print variable') 
  {
    run """
    echo "${env.EXAMPLE}"
    """
  } 

输出:

{
example_key : example value,
another_key : another value
}

0 个答案:

没有答案