ci: post: Trigger correct job, do not wait
Aimee OS/container-images/pipeline/head There was a failure building this commit Details

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.
cross/main
Dustin 2025-01-03 15:49:56 -06:00
parent ad77a3a035
commit 62e61522e5
1 changed files with 4 additions and 1 deletions

5
ci/Jenkinsfile vendored
View File

@ -50,7 +50,10 @@ pipeline {
post { post {
success { success {
build "${BRANCH_NAME.replace('cross/', 'cross-rust%2F')}" build([
job: "${BRANCH_NAME.replace('cross/', 'rust-cross%2F')}",
wait: false,
])
} }
failure { failure {