下面是我的用例,
我有工作A,B,C - A在上游,B和C是下游工作。当在Gerrit中创建补丁集时,基于patchset created event
I触发Job A
并根据此作业的结果,我们触发B和C.执行B和C后,我想显示Gerrit补丁集上所有三个作业的结果。像
Job A SUCCESS
JOB B SUCCESS
JOB C FAILED
现在我只看到JOB A
构建结果显示在GERRIT PATCH SET上
JOB A SUCCESS
有没有办法做到这一点?
答案 0 :(得分:1)
执行以下操作:
1)配置创建补丁集时触发的所有作业(A,B和C)。
2)将作业B和C配置为依赖于作业A
2.1)点击"高级..."在Gerrit触发器作业配置
2.2)在"此工作所依赖的其他工作中添加工作A"字段
使用此配置,作业B和C将在作业A完成之前等待它们开始并且您将获得所需的结果:
答案 1 :(得分:0)
解决此问题的最佳方法是创建一个小的包装器管道作业。我们将其命名为Build_ABC。
配置Build_ABC以触发您希望的Gerrit事件。该作业将负责运行其他3个版本,如果这些作业出现任何故障,您的Build_ABC将失败并将此报告给Gerrit。您将无法立即看到Gerrit消息中哪个作业失败,但您可以在Jenkins管道概述中看到。
在下面的脚本管道脚本中,您会看到一个调用Build_A并等待结果的管道。如果构建成功,它将继续并行执行Build B和C.在我的示例中,我使Build C失败,导致整个管道作业失败。
这是我的第一个答案的修订版本,脚本已经增长了一点。由于需要在发布到Gerrit的消息中具有单独的构建结果,因此管道已更改为捕获单个结果并记录它们。如果构建A失败,将跳过构建B + C并跳过状态。 接下来,可以使用gerrit review ssh命令行工具执行手动审核。通过这种方式,可以生成自定义消息以包含单个构建结果。它看起来像下面的屏幕:
我还没想出如何使它成为一个多行注释,但是还有一个选项可以在命令行中使用json,看一下。
def build_a = "Skipped"
def build_b = "Skipped"
def build_c = "Skipped"
def build_result = "+1"
try {
stage("A") {
try {
build( job: '/Peter/Build_A', wait: true)
build_a = "Pass"
} catch (e) {
build_a = "Failed"
// throw again or else the job to make the build fail
// throwing here will prevent B+C from running
throw e
}
}
stage("After A") {
parallel B: {
try {
build( job: '/Peter/Build_B', wait: true)
build_b = "Pass"
} catch (e) {
build_b = "Failed"
// throw again or else the job to make the build fail
throw e
}
}, C: {
try {
build( job: '/Peter/Build_C', wait: true)
build_c = "Pass"
} catch (e) {
build_c = "Failed"
// throw again or else the job to make the build fail
throw e
}
}
}
} catch(e) {
build_result = "-1"
// throw again or else the job to make the build fail
throw e
} finally {
node('master') {
// Perform a custom review using the environment vars
sh "ssh -p ${env.GERRIT_PORT} ${env.GERRIT_HOST} gerrit review --verified ${build_result} -m '\"Build A:${build_a} Build B: ${build_a} Build C: ${build_c}\"' ${env.GERRIT_PATCHSET_REVISION}"
}
}
接下来,您应该配置Gerrit触发器以忽略Jenkins的结果,否则将进行双重投票。
另一个优点是,通过Ocean Blue插件,您可以获得构建的精美图形表示,请参见下图,您可以通过单击作业来检查出现了什么问题。