如何从Jenkins piplenine中的Groovy脚本注入环境变量

时间:2020-03-23 20:09:24

标签: jenkins groovy jenkins-pipeline

我需要将自由式项目迁移到Jenkins管道。知道如何使用groovy脚本向声明性管道实现环境变量注入吗?

为此我需要管道代码:

enter image description here

1 个答案:

答案 0 :(得分:2)

您可以尝试将常规脚本添加到environment

environment {

 if() {
   env.xxx=yyy  // xxx is the name of environment variable
 }

}