gpt4 book ai didi

Jenkins 日期参数插件 - 如何在声明式管道中使用它

转载 作者:行者123 更新时间:2023-12-04 13:43:16 26 4
gpt4 key购买 nike

在声明性管道中使用日期参数插件的语法是什么。

到目前为止,我已经尝试过这个:

pipeline {
agent {
node {
label 'grange-jenkins-slave'
}
}

options { disableConcurrentBuilds() }

parameters {
date(name: 'EffectiveDate',
dateFormat: 'MMddyyy',
defaultValue: 'LocalDate.now();',
description: 'Effective Date',
trim: true)
file(name:'algo.xlsx', description:'Your algorithm file')
choice(name: 'currency',
choices: ['USD'],
description: 'Select a currency')

}
stages {
stage('genRates') {
steps {
script {
echo "test"
}
}
}
}

}

我得到的错误是 WorkflowScript: 11: Invalid parameter type "date". Valid parameter types: [booleanParam, choice, credentials, file, text, password, run, string] @ line 11, column 3.

最佳答案

您可以定义参数 as class DateParameterDefinition .

例子:

properties([parameters([
string(name: 'somestring', defaultValue: 'somevalue'),
[$class: 'DateParameterDefinition',
name: 'somedate',
dateFormat: 'yyyyMMdd',
defaultValue: 'LocalDate.now()']
])])

pipeline {
...
}

关于Jenkins 日期参数插件 - 如何在声明式管道中使用它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53712774/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com