mirror of
https://github.com/corda/corda.git
synced 2024-12-21 05:53:23 +00:00
125 lines
4.4 KiB
Groovy
125 lines
4.4 KiB
Groovy
#!groovy
|
|
/**
|
|
* Jenkins pipeline to build Corda OS nightly snapshots
|
|
*/
|
|
|
|
/**
|
|
* 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')
|
|
import static com.r3.build.BuildControl.killAllExistingBuildsForJob
|
|
|
|
killAllExistingBuildsForJob(env.JOB_NAME, env.BUILD_NUMBER.toInteger())
|
|
|
|
/*
|
|
** calculate the stage for NexusIQ evaluation
|
|
** * build for snapshots
|
|
*/
|
|
def nexusDefaultIqStage = "build"
|
|
|
|
/**
|
|
* make sure calculated default value of NexusIQ stage is first in the list
|
|
* thus making it default for the `choice` parameter
|
|
*/
|
|
def nexusIqStageChoices = [nexusDefaultIqStage].plus(
|
|
[
|
|
'develop',
|
|
'build',
|
|
'stage-release',
|
|
'release',
|
|
'operate'
|
|
].minus([nexusDefaultIqStage]))
|
|
|
|
pipeline {
|
|
agent { label 'standard' }
|
|
|
|
options {
|
|
timestamps()
|
|
ansiColor('xterm')
|
|
overrideIndexTriggers(false)
|
|
timeout(time: 3, unit: 'HOURS')
|
|
buildDiscarder(logRotator(daysToKeepStr: '14', artifactDaysToKeepStr: '14'))
|
|
}
|
|
|
|
parameters {
|
|
choice choices: nexusIqStageChoices, description: 'NexusIQ stage for code evaluation', name: 'nexusIqStage'
|
|
}
|
|
|
|
triggers {
|
|
cron '@midnight'
|
|
}
|
|
|
|
environment {
|
|
// Replace / with :: as links from Jenkins to Artifactory are broken if we use slashes
|
|
// in the name
|
|
ARTIFACTORY_BUILD_NAME = "Corda / Publish / Publish Nightly to Artifactory"
|
|
.replaceAll("/", " :: ")
|
|
DOCKER_URL = "https://index.docker.io/v1/"
|
|
}
|
|
|
|
stages {
|
|
stage('Sonatype Check') {
|
|
steps {
|
|
authenticateGradleWrapper()
|
|
sh "./gradlew --no-daemon clean jar"
|
|
script {
|
|
sh "./gradlew --no-daemon properties | grep -E '^(version|group):' >version-properties"
|
|
/* 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 artifactId = 'corda'
|
|
nexusAppId = "${groupId}-${artifactId}-${version}"
|
|
}
|
|
nexusPolicyEvaluation (
|
|
failBuildOnNetworkError: false,
|
|
iqApplication: selectedApplication(nexusAppId), // application *has* to exist before a build starts!
|
|
iqScanPatterns: [[scanPattern: 'node/capsule/build/libs/corda*.jar']],
|
|
iqStage: params.nexusIqStage
|
|
)
|
|
}
|
|
}
|
|
|
|
stage('Publish to Artifactory') {
|
|
steps {
|
|
rtServer (
|
|
id: 'R3-Artifactory',
|
|
url: 'https://software.r3.com/artifactory',
|
|
credentialsId: 'artifactory-credentials'
|
|
)
|
|
rtGradleDeployer (
|
|
id: 'deployer',
|
|
serverId: 'R3-Artifactory',
|
|
repo: 'corda-dev',
|
|
)
|
|
withCredentials([
|
|
usernamePassword(credentialsId: 'artifactory-credentials',
|
|
usernameVariable: 'CORDA_ARTIFACTORY_USERNAME',
|
|
passwordVariable: 'CORDA_ARTIFACTORY_PASSWORD')]) {
|
|
rtGradleRun (
|
|
usesPlugin: true,
|
|
useWrapper: true,
|
|
switches: "--no-daemon -s",
|
|
tasks: 'artifactoryPublish',
|
|
deployerId: 'deployer',
|
|
buildName: env.ARTIFACTORY_BUILD_NAME
|
|
)
|
|
}
|
|
rtPublishBuildInfo (
|
|
serverId: 'R3-Artifactory',
|
|
buildName: env.ARTIFACTORY_BUILD_NAME
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
post {
|
|
cleanup {
|
|
deleteDir() /* clean up our workspace */
|
|
}
|
|
}
|
|
}
|