Skip to content

Commit

Permalink
Update setup-branch job to trigger the weekly jobs as part of its exe…
Browse files Browse the repository at this point in the history
…cution
  • Loading branch information
rodrigonull committed May 20, 2024
1 parent 4082e3d commit a510be0
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .ci/jenkins/Jenkinsfile.setup-branch
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,21 @@ pipeline {
}
}
}

// Launch the weekly to deploy all artifacts from the branch
stage('Launch the weekly') {
when {
expression { return params.DEPLOY }
}
steps {
script {
def buildParams = getDefaultBuildParams()
addBooleanParam(buildParams, 'SKIP_TESTS', true)
addBooleanParam(buildParams, 'SKIP_CLOUD_NIGHTLY', true)
build(job: '../other/0-kogito-weekly', wait: false, parameters: buildParams, propagate: false)
}
}
}
}
post {
unsuccessful {
Expand Down

0 comments on commit a510be0

Please sign in to comment.