mirror of
https://github.com/corda/corda.git
synced 2024-12-21 05:53:23 +00:00
fd55e4c8d4
Conflicts: * .ci/dev/forward-merge/Jenkinsfile
32 lines
927 B
Groovy
32 lines
927 B
Groovy
@Library('corda-shared-build-pipeline-steps@5.1') _
|
|
|
|
/*
|
|
* Forward merge any changes in current branch to the branch with following version.
|
|
*
|
|
* Please note, the branches names are intentionally separated as variables, to minimised conflicts
|
|
* during automated merges for this file.
|
|
*
|
|
* These variables should be updated when a new version is cut
|
|
*/
|
|
|
|
/**
|
|
* the branch name of origin branch, it should match the current branch
|
|
* and it acts as a fail-safe inside {@code forwardMerger} pipeline
|
|
*/
|
|
String originBranch = 'release/os/4.8'
|
|
|
|
/**
|
|
* the branch name of target branch, it should be the branch with the next version
|
|
* after the one in current branch.
|
|
*/
|
|
String targetBranch = 'release/os/4.9'
|
|
|
|
/**
|
|
* Forward merge any changes between #originBranch and #targetBranch
|
|
*/
|
|
forwardMerger(
|
|
targetBranch: targetBranch,
|
|
originBranch: originBranch,
|
|
slackChannel: '#c4-forward-merge-bot-notifications',
|
|
)
|