From 62e61522e50d66fd38c9141c954a12a16af0d3fe Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Fri, 3 Jan 2025 15:49:56 -0600 Subject: [PATCH] ci: post: Trigger correct job, do not wait The next job in the pipeline is _rust-cross/main_, not _cross-rust/main_. Also, we don't need to wait for follow-up jobs. Otherwise, we end up with the whole pipeline blocking the _base_ job, etc. --- ci/Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 38c58d9..af269dc 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -50,7 +50,10 @@ pipeline { post { success { - build "${BRANCH_NAME.replace('cross/', 'cross-rust%2F')}" + build([ + job: "${BRANCH_NAME.replace('cross/', 'rust-cross%2F')}", + wait: false, + ]) } failure {