Skip to content

Commit

Permalink
Update setup-branch job to trigger the weekly cloud jobs as part of i…
Browse files Browse the repository at this point in the history
…ts execution
  • Loading branch information
rodrigonull committed May 20, 2024
1 parent a510be0 commit d7abf05
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .ci/jenkins/Jenkinsfile.setup-branch.cloud
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,20 @@ 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)
build(job: '../other/0-kogito-weekly-cloud', wait: false, parameters: buildParams, propagate: false)
}
}
}
}
post {
unsuccessful {
Expand Down

0 comments on commit d7abf05

Please sign in to comment.