Compare commits

...

2 Commits

Author SHA1 Message Date
Dustin 628c504161 ci: Build weekly
Aimee OS/container-images/pipeline/head There was a failure building this commit Details
2025-01-05 16:34:58 -06:00
Dustin 3bd4d4e642 ci: Do not wait for downstream job
Rather, finish immediately and do not account for the downstream job's
status in our own.
2025-01-05 16:33:53 -06:00
1 changed files with 8 additions and 1 deletions

9
ci/Jenkinsfile vendored
View File

@ -1,4 +1,8 @@
pipeline {
triggers {
cron 'H H * * H'
}
agent {
kubernetes {
yamlFile 'ci/podTemplate.yaml'
@ -56,7 +60,10 @@ pipeline {
post {
success {
build "${BRANCH_NAME.replace('base/', 'cross%2F')}"
build([
job: "${BRANCH_NAME.replace('base/', 'cross%2F')}",
wait: false,
])
}
failure {