如何在脚本Jenkinsfile中使用多个属性?

时间:2018-06-14 13:21:29

标签: jenkins jenkins-pipeline

我想提供选项和轮询触发器。我尝试过多次尝试,但没有用。

以下是我的一次尝试:

properties(
        [parameters([choice(choices: 'dev\nprod', description: 'environment to deploy', name: 'DEPLOY_TO')])],
        [pipelineTriggers([pollSCM('H/2 * * * *')])]
)

1 个答案:

答案 0 :(得分:3)

我找到了properties

的正确格式
properties(
    [
        parameters([choice(choices: 'dev\nprod', description: 'environment to deploy', name: 'DEPLOY_TO')]),
        pipelineTriggers([pollSCM('H/2 * * * *')])
    ]
)

我把括号和parens放在了错误的地方。