mirror of
https://github.com/corda/corda.git
synced 2025-01-31 00:24:59 +00:00
Merge branch 'release/os/4.5' into wz/merge-os-45-46-2020-07-22
This commit is contained in:
commit
b1571cc241
@ -1,3 +1,14 @@
|
|||||||
|
#!groovy
|
||||||
|
/**
|
||||||
|
* Jenkins pipeline to build Corda OS release with JDK11
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Kill already started job.
|
||||||
|
* Assume new commit takes precendence and results from previous
|
||||||
|
* unfinished builds are not required.
|
||||||
|
* This feature doesn't play well with disableConcurrentBuilds() option
|
||||||
|
*/
|
||||||
@Library('corda-shared-build-pipeline-steps')
|
@Library('corda-shared-build-pipeline-steps')
|
||||||
import static com.r3.build.BuildControl.killAllExistingBuildsForJob
|
import static com.r3.build.BuildControl.killAllExistingBuildsForJob
|
||||||
|
|
||||||
@ -22,13 +33,13 @@ if (isReleaseTag) {
|
|||||||
default: nexusIqStage = "operate"
|
default: nexusIqStage = "operate"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent {
|
agent { label 'k8s' }
|
||||||
label 'k8s'
|
|
||||||
}
|
|
||||||
options {
|
options {
|
||||||
timestamps()
|
timestamps()
|
||||||
timeout(time: 3, unit: 'HOURS')
|
timeout(time: 3, unit: 'HOURS')
|
||||||
|
buildDiscarder(logRotator(daysToKeepStr: '14', artifactDaysToKeepStr: '14'))
|
||||||
}
|
}
|
||||||
|
|
||||||
environment {
|
environment {
|
||||||
@ -48,14 +59,15 @@ pipeline {
|
|||||||
sh "./gradlew --no-daemon clean jar"
|
sh "./gradlew --no-daemon clean jar"
|
||||||
script {
|
script {
|
||||||
sh "./gradlew --no-daemon properties | grep -E '^(version|group):' >version-properties"
|
sh "./gradlew --no-daemon properties | grep -E '^(version|group):' >version-properties"
|
||||||
def version = sh (returnStdout: true, script: "grep ^version: version-properties | sed -e 's/^version: //'").trim()
|
/* every build related to Corda X.Y (GA, RC, HC, patch or snapshot) uses the same NexusIQ application */
|
||||||
|
def version = sh (returnStdout: true, script: "grep ^version: version-properties | sed -e 's/^version: \\([0-9]\\+\\.[0-9]\\+\\).*\$/\\1/'").trim()
|
||||||
def groupId = sh (returnStdout: true, script: "grep ^group: version-properties | sed -e 's/^group: //'").trim()
|
def groupId = sh (returnStdout: true, script: "grep ^group: version-properties | sed -e 's/^group: //'").trim()
|
||||||
def artifactId = 'corda'
|
def artifactId = 'corda'
|
||||||
nexusAppId = "jenkins-${groupId}-${artifactId}-jdk11-${version}"
|
nexusAppId = "jenkins-${groupId}-${artifactId}-jdk11-${version}"
|
||||||
}
|
}
|
||||||
nexusPolicyEvaluation (
|
nexusPolicyEvaluation (
|
||||||
failBuildOnNetworkError: false,
|
failBuildOnNetworkError: false,
|
||||||
iqApplication: manualApplication(nexusAppId),
|
iqApplication: selectedApplication(nexusAppId), // application *has* to exist before a build starts!
|
||||||
iqScanPatterns: [[scanPattern: 'node/capsule/build/libs/corda*.jar']],
|
iqScanPatterns: [[scanPattern: 'node/capsule/build/libs/corda*.jar']],
|
||||||
iqStage: nexusIqStage
|
iqStage: nexusIqStage
|
||||||
)
|
)
|
||||||
@ -132,7 +144,7 @@ pipeline {
|
|||||||
rtGradleDeployer(
|
rtGradleDeployer(
|
||||||
id: 'deployer',
|
id: 'deployer',
|
||||||
serverId: 'R3-Artifactory',
|
serverId: 'R3-Artifactory',
|
||||||
repo: 'r3-corda-releases'
|
repo: 'corda-releases'
|
||||||
)
|
)
|
||||||
rtGradleRun(
|
rtGradleRun(
|
||||||
usesPlugin: true,
|
usesPlugin: true,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user