gpt4 book ai didi

jenkins - 停止 Jenkins 管道 cron 触发器

转载 作者:行者123 更新时间:2023-12-04 01:54:22 24 4
gpt4 key购买 nike

我有一个 Jenkinsfile 如下

node('workers') {
echo "Running ${env.BUILD_ID} on ${env.JENKINS_URL}"

// properties(
// [
// pipelineTriggers([cron('0 * * * *')]),
// ]
// )

stage('checkout') {
checkout scm
}
stage('Build') {
echo 'building'
}
stage('Test') {
echo 'Testing..'
}
stage('Deploy') {
echo 'Deploying....'
}
}

属性部分之前没有被注释掉,我检查它以测试从管道即代码调度 Jenkins 构建。这有效,但现在我想停止调度。注释掉代码显然不起作用,那么我该怎么做呢?

最佳答案

给我打电话 pipelineTriggers用一个空列表作为参数就可以了:

properties([
pipelineTriggers([]),
])

关于jenkins - 停止 Jenkins 管道 cron 触发器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51409070/

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