From 3bd4d4e642cf9c668e4b8b81a3521e454d4e59c4 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sun, 5 Jan 2025 16:33:53 -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 05556cb..4f9ee01 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -56,7 +56,10 @@ pipeline { post { success { - build "${BRANCH_NAME.replace('base/', 'cross%2F')}" + build([ + job: "${BRANCH_NAME.replace('base/', 'cross%2F')}", + wait: false, + ]) } failure {