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

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.
This commit is contained in:
2025-01-03 15:49:56 -06:00
parent ad77a3a035
commit 62e61522e5

5
ci/Jenkinsfile vendored
View File

@@ -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 {