在管道中检索注入的构建参数

时间:2020-02-02 17:01:13

标签: jenkins jenkins-pipeline

我正在专门研究以下示例,但我想这个问题会更笼统。

https://github.com/jenkinsci/poll-mailbox-trigger-plugin 声明以下构建参数,并注入到作业中

pipeline {

    agent any

    stages {
        stage('Test') {
            steps {
                echo env.pmt_content
                echo ${pmt_content}
            }
        }

    }
}

上述方法似乎对我不起作用:

如何在管道作业中检索注入的构建参数?

1 个答案:

答案 0 :(得分:1)

pipeline-plugin tutorial中所述,您可以使用params访问作业的构建参数。

    print params.pmt_content 
    print "Content is ${params.pmt_content}"