From 9bf7c86eba7598acaac21c6a5c87b612835ae32a Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sun, 5 Jan 2025 16:32:10 -0600 Subject: [PATCH] ci: Do not wait for downstream job Rather, finish immediately and do not account for the downstream job's status in our own. --- ci/Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 6c566a5..89bdc29 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -50,7 +50,10 @@ pipeline { post { success { - build "${BRANCH_NAME.replace('rust-cross/', 'build%2F')}" + build([ + job: "${BRANCH_NAME.replace('rust-cross/', 'build%2F')}", + wait: false, + ]) } failure {