我有一个具有多个阶段的Jenkins文件,其中一个实际上是另一个工作(部署一个),在某些情况下会失败。
我知道我可以使用Jenkinsfile提示,但我真的不知道如何为这项工作实现重试机制。
答案 0 :(得分:28)
你应该能够组合重试+输入来做到这一点 像这样的东西
stage('deploy-test') {
try {
build 'yourJob'
} catch(error) {
echo "First build failed, let's retry if accepted"
retry(2) {
input "Retry the job ?"
build 'yourJob'
}
}
}
如果您希望在没有人验证的情况下完成输入,您也可以使用超时输入。 还有waitUntil可能有用但我尚未使用它
编辑: WaitUntil似乎绝对是最好的,你应该稍微玩一下但这样的东西更干净:
stage('deploy-test') {
waitUntil {
try {
build 'yourJob'
} catch(error) {
input "Retry the job ?"
false
}
}
}
顺便说一下,这里有所有步骤https://jenkins.io/doc/pipeline/steps
答案 1 :(得分:7)
这个要点(不是我的)是我在尝试实现此功能时找到的更好的选项之一。 https://gist.github.com/beercan1989/b66b7643b48434f5bdf7e1c87094acb9
将其更改为共享库中的方法,该方法仅根据我的需要重试或中止。还添加了最大重试次数并设置了超时变量,以便我们可以根据需要它的作业或阶段进行更改。
package com.foo.bar.jenkins
def class PipelineHelper {
def steps
PipelineHelper(steps) {
this.steps = steps
}
void retryOrAbort(final Closure<?> action, int maxAttempts, int timeoutSeconds, final int count = 0) {
steps.echo "Trying action, attempt count is: ${count}"
try {
action.call();
} catch (final exception) {
steps.echo "${exception.toString()}"
steps.timeout(time: timeoutSeconds, unit: 'SECONDS') {
def userChoice = false
try {
userChoice = steps.input(message: 'Retry?', ok: 'Ok', parameters: [
[$class: 'BooleanParameterDefinition', defaultValue: true, description: '', name: 'Check to retry from failed stage']])
} catch (org.jenkinsci.plugins.workflow.steps.FlowInterruptedException e) {
userChoice = false
}
if (userChoice) {
if (count <= maxAttempts) {
steps.echo "Retrying from failed stage."
return retryOrAbort(action, maxAttempts, timeoutMinutes, count + 1)
} else {
steps.echo "Max attempts reached. Will not retry."
throw exception
}
} else {
steps.echo 'Aborting'
throw exception;
}
}
}
}
}
最多2次重试的示例用法,等待输入60秒。
def pipelineHelper = new PipelineHelper(this)
stage ('Retry Example'){
pipelineHelper.retryOrAbort({
node{
echo 'Here is an example'
throw new RuntimeException('This example will fail.')
}
}, 2, 60)
}
请记住将节点放在闭包内,以便等待输入不会阻止执行程序。
如果你有付费的jenkins企业,Cloudbees有一个可以更好地处理这个问题的Checkpoint插件,但是不打算为开源Jenkins(JENKINS-33846)发布。
答案 2 :(得分:4)
这有一个不错的增量等待时间
stage('deploy-test') {
def retryAttempt = 0
retry(2) {
if (retryAttempt > 0) {
sleep(1000 * 2 + 2000 * retryAttempt)
}
retryAttempt = retryAttempt + 1
input "Retry the job ?"
build 'yourJob'
}
}