隐藏输出HTML

时间:2019-11-19 09:06:18

标签: jenkins groovy

我有一个 Active Choice反应参数,称其为random_number,它返回一个整数。

假设我的groovy脚本中包含以下代码:

import jenkins.model.Jenkins

try{
      foo = 2
      return foo * foo

 } catch(e) {
  return e.message.tokenize()
}

该值将引用 Active Choice引用反应参数,该参数将在参数页面中以 Formatted HTML 输出。

我正在寻找一种隐藏我的 random_number 的方法,因为我不希望它显示在参数页面中,但是我希望它可以用于格式化HTML编号中。

现在,我在作业的配置页面中看到了“隐藏参数”选项。但不幸的是,您无法在此处键入常规脚本。

是否有一种方法可以使参数既有效选择隐藏

This is my Active Choices Reactive Parameter configuration

This is my HTML Active Choice Reference Reactive Parameter configuration

And finally this is my output of the parameterized job. My goal is to hide the Choiced parameter above

我考虑过将两个参数的代码组合到一个输出HTML的参数上,但是我想避免这种情况,因为我想最小化每个参数中的代码量。

0 个答案:

没有答案