ci: post: Trigger correct job, do not wait
Some checks failed
Aimee OS/container-images/pipeline/head There was a failure building this commit
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:
5
ci/Jenkinsfile
vendored
5
ci/Jenkinsfile
vendored
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user