Skip to content

Commit c96bd27

Browse files
committed
ES-1978: set up 5.3 release branch
1 parent a8ca4bd commit c96bd27

11 files changed

+30
-44
lines changed

.ci/JenkinsApiCompatibility

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Check corda-api compatibility with downstream consumers which implement CordApps
2-
@Library('corda-shared-build-pipeline-steps@5.2') _
2+
@Library('corda-shared-build-pipeline-steps@5.3') _
33

44
cordaApiCompatibilityCheck(
55
javaVersion: '17'

.ci/JenkinsfileSnykDelta

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@Library('corda-shared-build-pipeline-steps@5.2') _
1+
@Library('corda-shared-build-pipeline-steps@5.3') _
22

33
snykDelta(
44
snykOrgId: 'corda5-snyk-org-id',

.ci/dev/forward-merge/JenkinsForwardMergeReleaseBranch

Lines changed: 0 additions & 30 deletions
This file was deleted.

.ci/dev/forward-merge/JenkinsInteropMerge

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@Library('corda-shared-build-pipeline-steps@5.2') _
1+
@Library('corda-shared-build-pipeline-steps@5.3') _
22

33
/*
44
* Forward merge any changes in current branch to the branch with following version.

.ci/dev/forward-merge/JenkinsfileMergeAutomation

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! groovy
2-
@Library('corda-shared-build-pipeline-steps@5.2') _
2+
@Library('corda-shared-build-pipeline-steps@5.3') _
33

44
/**
55
* Forward merge any changes in current branch to the branch with following version.
@@ -14,13 +14,13 @@
1414
* the branch name of origin branch, it should match the current branch
1515
* and it acts as a fail-safe inside {@code forwardMerger} pipeline
1616
*/
17-
String originBranch = 'release/os/5.2'
17+
String originBranch = 'release/os/5.3'
1818

1919
/**
2020
* the branch name of target branch, it should be the branch with the next version
2121
* after the one in current branch.
2222
*/
23-
String targetBranch = 'release/os/5.3'
23+
String targetBranch = 'release/os/5.4'
2424

2525
/**
2626
* Forward merge any changes between {@code originBranch} and {@code targetBranch}

.ci/nightly/JenkinsfileNightly

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@Library('corda-shared-build-pipeline-steps@5.2') _
1+
@Library('corda-shared-build-pipeline-steps@5.3') _
22

33
cordaPipelineKubernetesAgent(
44
runIntegrationTests: false,

.ci/nightly/JenkinsfileSnykScan

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@Library('corda-shared-build-pipeline-steps@5.2') _
1+
@Library('corda-shared-build-pipeline-steps@5.3') _
22

33
cordaSnykScanPipeline (
44
snykTokenId: 'r3-snyk-corda5',

.ci/nightly/JenkinsfileWindowsCompatibility

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@Library('corda-shared-build-pipeline-steps@5.2') _
1+
@Library('corda-shared-build-pipeline-steps@5.3') _
22

33
windowsCompatibility(
44
runIntegrationTests: false,

.github/CODEOWNERS

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
1-
# Code freeze reviewers
2-
* @driessamyn @jasonbyrner3 @ronanbrowne @rick-r3 @simon-johnson-r3 @blsemo @Omar-awad @aditisdesai @vinir3 @vkolomeyko @thiagoviana @Sakpal @dickon
1+
# Build scripts and Jenkins files should be audited by BLT
2+
# Any changes to source code of corda-api to be reviewd by C5 team leads
3+
4+
Jenkinsfile @corda/blt
5+
.ci/** @corda/blt
6+
7+
gradle/wrapper @corda/blt
8+
*.toml @corda/corda5-team-leads
9+
10+
*.gradle @corda/blt
11+
gradle.properties @corda/corda5-team-leads
12+
13+
*.kt @corda/corda5-team-leads
14+
*.java @corda/corda5-team-leads
15+
16+
**/scans/*.yaml @corda/corda5-team-leads
17+
18+
CODEOWNERS @corda/blt @corda/corda5-team-leads

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@Library('corda-shared-build-pipeline-steps@5.2') _
1+
@Library('corda-shared-build-pipeline-steps@5.3') _
22

33
cordaPipelineKubernetesAgent(
44
runIntegrationTests: false,

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
org.gradle.java.installations.auto-download=false
22

33
# Versioning
4-
cordaProductVersion = 5.2.0
4+
cordaProductVersion = 5.3.0
55
# NOTE: update this each time this module contains a breaking change
66
## NOTE: currently this is a top level revision, so all API versions will line up, but this could be moved to
77
## a per module property in which case module versions can change independently.
8-
cordaApiRevision = 48
8+
cordaApiRevision = 1
99

1010
# Main
1111
kotlin.stdlib.default.dependency = false

0 commit comments

Comments
 (0)