mirror of
https://github.com/corda/corda.git
synced 2025-05-06 02:28:28 +00:00
Merge pull request #6382 from corda/merge-45-to-46
NOTICK: Merge Corda OS 4.5 to 4.6
This commit is contained in:
commit
967de2f0ba
@ -3,8 +3,19 @@ import static com.r3.build.BuildControl.killAllExistingBuildsForJob
|
|||||||
|
|
||||||
killAllExistingBuildsForJob(env.JOB_NAME, env.BUILD_NUMBER.toInteger())
|
killAllExistingBuildsForJob(env.JOB_NAME, env.BUILD_NUMBER.toInteger())
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sense environment
|
||||||
|
*/
|
||||||
|
boolean isReleaseTag = (env.TAG_NAME =~ /^release.*JDK11$/)
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'k8s' }
|
agent {
|
||||||
|
dockerfile {
|
||||||
|
label 'k8s'
|
||||||
|
additionalBuildArgs "--build-arg USER=stresstester"
|
||||||
|
filename '.ci/dev/compatibility/DockerfileJDK11'
|
||||||
|
}
|
||||||
|
}
|
||||||
options {
|
options {
|
||||||
timestamps()
|
timestamps()
|
||||||
buildDiscarder(logRotator(daysToKeepStr: '7', artifactDaysToKeepStr: '7'))
|
buildDiscarder(logRotator(daysToKeepStr: '7', artifactDaysToKeepStr: '7'))
|
||||||
@ -16,10 +27,11 @@ pipeline {
|
|||||||
EXECUTOR_NUMBER = "${env.EXECUTOR_NUMBER}"
|
EXECUTOR_NUMBER = "${env.EXECUTOR_NUMBER}"
|
||||||
BUILD_ID = "${env.BUILD_ID}-${env.JOB_NAME}"
|
BUILD_ID = "${env.BUILD_ID}-${env.JOB_NAME}"
|
||||||
ARTIFACTORY_CREDENTIALS = credentials('artifactory-credentials')
|
ARTIFACTORY_CREDENTIALS = credentials('artifactory-credentials')
|
||||||
|
ARTIFACTORY_BUILD_NAME = "Corda / Publish / Publish JDK 11 Release to Artifactory".replaceAll("/", "::")
|
||||||
}
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage('Corda Pull Request - Generate Build Image') {
|
stage('Generate Build Image') {
|
||||||
steps {
|
steps {
|
||||||
withCredentials([string(credentialsId: 'container_reg_passwd', variable: 'DOCKER_PUSH_PWD')]) {
|
withCredentials([string(credentialsId: 'container_reg_passwd', variable: 'DOCKER_PUSH_PWD')]) {
|
||||||
sh "./gradlew " +
|
sh "./gradlew " +
|
||||||
@ -29,7 +41,7 @@ pipeline {
|
|||||||
"-Ddocker.build.tag=\"\${DOCKER_TAG_TO_USE}\" " +
|
"-Ddocker.build.tag=\"\${DOCKER_TAG_TO_USE}\" " +
|
||||||
"-Ddocker.buildbase.tag=11latest " +
|
"-Ddocker.buildbase.tag=11latest " +
|
||||||
"-Ddocker.dockerfile=DockerfileJDK11Azul" +
|
"-Ddocker.dockerfile=DockerfileJDK11Azul" +
|
||||||
" clean pushBuildImage --stacktrace"
|
" clean pushBuildImage preAllocateForParallelRegressionTest preAllocateForAllParallelSlowIntegrationTest --stacktrace"
|
||||||
}
|
}
|
||||||
sh "kubectl auth can-i get pods"
|
sh "kubectl auth can-i get pods"
|
||||||
}
|
}
|
||||||
@ -65,6 +77,36 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stage('Publish to Artifactory') {
|
||||||
|
when {
|
||||||
|
expression { isReleaseTag }
|
||||||
|
}
|
||||||
|
steps {
|
||||||
|
rtServer(
|
||||||
|
id: 'R3-Artifactory',
|
||||||
|
url: 'https://software.r3.com/artifactory',
|
||||||
|
credentialsId: 'artifactory-credentials'
|
||||||
|
)
|
||||||
|
rtGradleDeployer(
|
||||||
|
id: 'deployer',
|
||||||
|
serverId: 'R3-Artifactory',
|
||||||
|
repo: 'r3-corda-releases'
|
||||||
|
)
|
||||||
|
rtGradleRun(
|
||||||
|
usesPlugin: true,
|
||||||
|
useWrapper: true,
|
||||||
|
switches: '-s --info',
|
||||||
|
tasks: 'artifactoryPublish',
|
||||||
|
deployerId: 'deployer',
|
||||||
|
buildName: env.ARTIFACTORY_BUILD_NAME
|
||||||
|
)
|
||||||
|
rtPublishBuildInfo(
|
||||||
|
serverId: 'R3-Artifactory',
|
||||||
|
buildName: env.ARTIFACTORY_BUILD_NAME
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
post {
|
post {
|
||||||
|
@ -8,7 +8,7 @@ pipeline {
|
|||||||
dockerfile {
|
dockerfile {
|
||||||
label 'k8s'
|
label 'k8s'
|
||||||
additionalBuildArgs "--build-arg USER=stresstester"
|
additionalBuildArgs "--build-arg USER=stresstester"
|
||||||
filename '.ci/dev/compatibility/DockerfileJDK11Compile'
|
filename '.ci/dev/compatibility/DockerfileJDK11'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
options {
|
options {
|
||||||
|
2
.ci/dev/integration/Jenkinsfile
vendored
2
.ci/dev/integration/Jenkinsfile
vendored
@ -53,7 +53,7 @@ pipeline {
|
|||||||
|
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
junit '**/build/test-results-xml/**/*.xml'
|
junit testResults: '**/build/test-results-xml/**/*.xml', keepLongStdio: true
|
||||||
}
|
}
|
||||||
cleanup {
|
cleanup {
|
||||||
deleteDir() /* clean up our workspace */
|
deleteDir() /* clean up our workspace */
|
||||||
|
93
.ci/dev/mswin/Jenkinsfile
vendored
Normal file
93
.ci/dev/mswin/Jenkinsfile
vendored
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
#!groovy
|
||||||
|
/**
|
||||||
|
* Jenkins pipeline to build Corda on MS Windows server.
|
||||||
|
* Because it takes a long time to run tests sequentially, unit tests and
|
||||||
|
* integration tests are started in parallel on separate agents.
|
||||||
|
*
|
||||||
|
* Additionally, pull requests by default run only unit tests.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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())
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sense environment
|
||||||
|
*/
|
||||||
|
boolean isReleaseBranch = (env.BRANCH_NAME =~ /^release\/os\/.*/)
|
||||||
|
|
||||||
|
pipeline {
|
||||||
|
agent none
|
||||||
|
options {
|
||||||
|
ansiColor('xterm')
|
||||||
|
timestamps()
|
||||||
|
timeout(time: 3, unit: 'HOURS')
|
||||||
|
}
|
||||||
|
|
||||||
|
parameters {
|
||||||
|
booleanParam defaultValue: (isReleaseBranch), description: 'Run integration tests?', name: 'DO_INTEGRATION_TESTS'
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Do no receive Github's push events for release branches -> suitable for nightly builds
|
||||||
|
* but projects for pull requests will receive them as normal, and PR builds are started ASAP
|
||||||
|
*/
|
||||||
|
triggers {
|
||||||
|
pollSCM ignorePostCommitHooks: isReleaseBranch, scmpoll_spec: '@midnight'
|
||||||
|
}
|
||||||
|
|
||||||
|
stages {
|
||||||
|
stage('Tests') {
|
||||||
|
parallel {
|
||||||
|
stage('Unit Tests') {
|
||||||
|
agent { label 'mswin' }
|
||||||
|
steps {
|
||||||
|
sh "./gradlew --no-daemon " +
|
||||||
|
"--stacktrace " +
|
||||||
|
"-Pcompilation.warningsAsErrors=false " +
|
||||||
|
"-Ptests.failFast=true " +
|
||||||
|
"clean test"
|
||||||
|
}
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
archiveArtifacts allowEmptyArchive: true, artifacts: '**/logs/**/*.log'
|
||||||
|
junit testResults: '**/build/test-results/**/*.xml', keepLongStdio: true, allowEmptyResults: true
|
||||||
|
bat '.ci/kill_corda_procs.cmd'
|
||||||
|
}
|
||||||
|
cleanup {
|
||||||
|
deleteDir() /* clean up our workspace */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
stage('Integration Tests') {
|
||||||
|
when {
|
||||||
|
expression { params.DO_INTEGRATION_TESTS }
|
||||||
|
beforeAgent true
|
||||||
|
}
|
||||||
|
agent { label 'mswin' }
|
||||||
|
steps {
|
||||||
|
sh "./gradlew --no-daemon " +
|
||||||
|
"clean integrationTest"
|
||||||
|
}
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
archiveArtifacts allowEmptyArchive: true, artifacts: '**/logs/**/*.log'
|
||||||
|
junit testResults: '**/build/test-results/**/*.xml', keepLongStdio: true, allowEmptyResults: true
|
||||||
|
bat '.ci/kill_corda_procs.cmd'
|
||||||
|
}
|
||||||
|
cleanup {
|
||||||
|
deleteDir() /* clean up our workspace */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
2
.ci/dev/nightly-regression/Jenkinsfile
vendored
2
.ci/dev/nightly-regression/Jenkinsfile
vendored
@ -79,7 +79,7 @@ pipeline {
|
|||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
archiveArtifacts artifacts: '**/pod-logs/**/*.log', fingerprint: false
|
archiveArtifacts artifacts: '**/pod-logs/**/*.log', fingerprint: false
|
||||||
junit testResults: '**/build/test-results-xml/**/*.xml', allowEmptyResults: true
|
junit testResults: '**/build/test-results-xml/**/*.xml', allowEmptyResults: true, keepLongStdio: true
|
||||||
}
|
}
|
||||||
cleanup {
|
cleanup {
|
||||||
deleteDir() /* clean up our workspace */
|
deleteDir() /* clean up our workspace */
|
||||||
|
87
.ci/dev/regression/Jenkinsfile
vendored
87
.ci/dev/regression/Jenkinsfile
vendored
@ -1,3 +1,24 @@
|
|||||||
|
#!groovy
|
||||||
|
/**
|
||||||
|
* Jenkins pipeline to build Corda OS release branches and tags
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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())
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sense environment
|
||||||
|
*/
|
||||||
|
boolean isTag = (env.TAG_NAME =~ /^release-V(\d+\.\d+)?(\.\d+)?(-.+)?$/)
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'k8s' }
|
agent { label 'k8s' }
|
||||||
options {
|
options {
|
||||||
@ -15,6 +36,12 @@ pipeline {
|
|||||||
}
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
|
stage('Deploy Nodes') {
|
||||||
|
steps {
|
||||||
|
sh "./gradlew --no-daemon jar deployNodes"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage('Generate Build Image') {
|
stage('Generate Build Image') {
|
||||||
steps {
|
steps {
|
||||||
withCredentials([string(credentialsId: 'container_reg_passwd', variable: 'DOCKER_PUSH_PWD')]) {
|
withCredentials([string(credentialsId: 'container_reg_passwd', variable: 'DOCKER_PUSH_PWD')]) {
|
||||||
@ -65,7 +92,7 @@ pipeline {
|
|||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
archiveArtifacts artifacts: '**/pod-logs/**/*.log', fingerprint: false
|
archiveArtifacts artifacts: '**/pod-logs/**/*.log', fingerprint: false
|
||||||
junit '**/build/test-results-xml/**/*.xml'
|
junit testResults: '**/build/test-results-xml/**/*.xml', keepLongStdio: true
|
||||||
|
|
||||||
script {
|
script {
|
||||||
try {
|
try {
|
||||||
@ -97,38 +124,40 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
script
|
script
|
||||||
{
|
{
|
||||||
// We want to send a summary email, but want to limit to once per day.
|
if (!isTag) {
|
||||||
// Comparing the dates of the previous and current builds achieves this,
|
// We want to send a summary email, but want to limit to once per day.
|
||||||
// i.e. we will only send an email for the first build on a given day.
|
// Comparing the dates of the previous and current builds achieves this,
|
||||||
def prevBuildDate = new Date(
|
// i.e. we will only send an email for the first build on a given day.
|
||||||
currentBuild?.previousBuild.timeInMillis ?: 0).clearTime()
|
def prevBuildDate = new Date(
|
||||||
def currentBuildDate = new Date(
|
currentBuild?.previousBuild.timeInMillis ?: 0).clearTime()
|
||||||
currentBuild.timeInMillis).clearTime()
|
def currentBuildDate = new Date(
|
||||||
|
currentBuild.timeInMillis).clearTime()
|
||||||
|
|
||||||
if (prevBuildDate != currentBuildDate) {
|
if (prevBuildDate != currentBuildDate) {
|
||||||
def statusSymbol = '\u2753'
|
def statusSymbol = '\u2753'
|
||||||
switch(currentBuild.result) {
|
switch(currentBuild.result) {
|
||||||
case 'SUCCESS':
|
case 'SUCCESS':
|
||||||
statusSymbol = '\u2705'
|
statusSymbol = '\u2705'
|
||||||
break;
|
break;
|
||||||
case 'UNSTABLE':
|
case 'UNSTABLE':
|
||||||
case 'FAILURE':
|
case 'FAILURE':
|
||||||
statusSymbol = '\u274c'
|
statusSymbol = '\u274c'
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
echo('First build for this date, sending summary email')
|
||||||
|
emailext to: '$DEFAULT_RECIPIENTS',
|
||||||
|
subject: "$statusSymbol" + '$BRANCH_NAME regression tests - $BUILD_STATUS',
|
||||||
|
mimeType: 'text/html',
|
||||||
|
body: '${SCRIPT, template="groovy-html.template"}'
|
||||||
|
} else {
|
||||||
|
echo('Already sent summary email today, suppressing')
|
||||||
}
|
}
|
||||||
|
|
||||||
echo('First build for this date, sending summary email')
|
|
||||||
emailext to: '$DEFAULT_RECIPIENTS',
|
|
||||||
subject: "$statusSymbol" + '$BRANCH_NAME regression tests - $BUILD_STATUS',
|
|
||||||
mimeType: 'text/html',
|
|
||||||
body: '${SCRIPT, template="groovy-html.template"}'
|
|
||||||
} else {
|
|
||||||
echo('Already sent summary email today, suppressing')
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
2
.ci/dev/unit/Jenkinsfile
vendored
2
.ci/dev/unit/Jenkinsfile
vendored
@ -51,7 +51,7 @@ pipeline {
|
|||||||
|
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
junit '**/build/test-results-xml/**/*.xml'
|
junit testResults: '**/build/test-results-xml/**/*.xml', keepLongStdio: true
|
||||||
}
|
}
|
||||||
cleanup {
|
cleanup {
|
||||||
deleteDir() /* clean up our workspace */
|
deleteDir() /* clean up our workspace */
|
||||||
|
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@ -72,7 +72,7 @@ pipeline {
|
|||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
archiveArtifacts artifacts: '**/pod-logs/**/*.log', fingerprint: false
|
archiveArtifacts artifacts: '**/pod-logs/**/*.log', fingerprint: false
|
||||||
junit '**/build/test-results-xml/**/*.xml'
|
junit testResults: '**/build/test-results-xml/**/*.xml', keepLongStdio: true
|
||||||
}
|
}
|
||||||
cleanup {
|
cleanup {
|
||||||
deleteDir() /* clean up our workspace */
|
deleteDir() /* clean up our workspace */
|
||||||
|
@ -62,11 +62,11 @@ class InitialRegistration(val baseDirectory: Path, private val networkRootTrustS
|
|||||||
val versionInfo = startup.getVersionInfo()
|
val versionInfo = startup.getVersionInfo()
|
||||||
|
|
||||||
println("\n" +
|
println("\n" +
|
||||||
"******************************************************************\n" +
|
"*******************************************************************\n" +
|
||||||
"* *\n" +
|
"* *\n" +
|
||||||
"* Registering as a new participant with a Corda network *\n" +
|
"* Registering as a new participant with a Corda network *\n" +
|
||||||
"* *\n" +
|
"* *\n" +
|
||||||
"******************************************************************\n")
|
"*******************************************************************\n")
|
||||||
|
|
||||||
NodeRegistrationHelper(NodeRegistrationConfiguration(conf),
|
NodeRegistrationHelper(NodeRegistrationConfiguration(conf),
|
||||||
HTTPNetworkRegistrationService(
|
HTTPNetworkRegistrationService(
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
FROM stefanotestingcr.azurecr.io/buildbase:11latest
|
FROM stefanotestingcr.azurecr.io/buildbase:11latest
|
||||||
COPY . /tmp/source
|
COPY . /tmp/source
|
||||||
CMD cd /tmp/source && GRADLE_USER_HOME=/tmp/gradle ./gradlew clean testClasses integrationTestClasses --parallel --info
|
CMD cd /tmp/source && GRADLE_USER_HOME=/tmp/gradle ./gradlew clean testClasses integrationTestClasses --parallel --info
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user