2019-10-08 14:33:24 +00:00
|
|
|
@Library('existing-build-control')
|
|
|
|
import static com.r3.build.BuildControl.killAllExistingBuildsForJob
|
|
|
|
|
|
|
|
killAllExistingBuildsForJob(env.JOB_NAME, env.BUILD_NUMBER.toInteger())
|
2019-09-16 10:29:58 +00:00
|
|
|
|
|
|
|
pipeline {
|
|
|
|
agent { label 'k8s' }
|
2019-09-19 17:41:06 +00:00
|
|
|
options { timestamps() }
|
|
|
|
|
2019-09-16 10:29:58 +00:00
|
|
|
environment {
|
2019-10-14 14:51:18 +00:00
|
|
|
DOCKER_TAG_TO_USE = "${env.GIT_COMMIT.subSequence(0, 8)}"
|
2019-09-16 10:29:58 +00:00
|
|
|
EXECUTOR_NUMBER = "${env.EXECUTOR_NUMBER}"
|
|
|
|
BUILD_ID = "${env.BUILD_ID}-${env.JOB_NAME}"
|
2019-11-02 09:07:53 +00:00
|
|
|
ARTIFACTORY_CREDENTIALS = credentials('artifactory-credentials')
|
2019-09-16 10:29:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stages {
|
2019-09-19 17:41:06 +00:00
|
|
|
stage('Corda Pull Request - Generate Build Image') {
|
2019-09-16 10:29:58 +00:00
|
|
|
steps {
|
|
|
|
withCredentials([string(credentialsId: 'container_reg_passwd', variable: 'DOCKER_PUSH_PWD')]) {
|
|
|
|
sh "./gradlew " +
|
|
|
|
"-Dkubenetize=true " +
|
|
|
|
"-Ddocker.push.password=\"\${DOCKER_PUSH_PWD}\" " +
|
|
|
|
"-Ddocker.work.dir=\"/tmp/\${EXECUTOR_NUMBER}\" " +
|
2019-10-28 11:48:04 +00:00
|
|
|
"-Ddocker.build.tag=\"\${DOCKER_TAG_TO_USE}\"" +
|
2019-11-19 15:01:42 +00:00
|
|
|
" clean pushBuildImage preAllocateForAllParallelUnitAndIntegrationTest --stacktrace"
|
2019-09-16 10:29:58 +00:00
|
|
|
}
|
2019-09-19 17:41:06 +00:00
|
|
|
sh "kubectl auth can-i get pods"
|
2019-09-16 10:29:58 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-19 17:41:06 +00:00
|
|
|
|
|
|
|
stage('Corda Pull Request - Run Tests') {
|
|
|
|
parallel {
|
2019-11-19 15:01:42 +00:00
|
|
|
stage('Integration and Unit Tests') {
|
2019-09-19 17:41:06 +00:00
|
|
|
steps {
|
|
|
|
sh "./gradlew " +
|
|
|
|
"-DbuildId=\"\${BUILD_ID}\" " +
|
|
|
|
"-Dkubenetize=true " +
|
2019-11-02 09:07:53 +00:00
|
|
|
"-Ddocker.run.tag=\"\${DOCKER_TAG_TO_USE}\" " +
|
|
|
|
"-Dartifactory.username=\"\${ARTIFACTORY_CREDENTIALS_USR}\" " +
|
|
|
|
"-Dartifactory.password=\"\${ARTIFACTORY_CREDENTIALS_PSW}\" " +
|
|
|
|
"-Dgit.branch=\"\${GIT_BRANCH}\" " +
|
|
|
|
"-Dgit.target.branch=\"\${CHANGE_TARGET}\" " +
|
2019-11-19 15:01:42 +00:00
|
|
|
" deAllocateForAllParallelUnitAndIntegrationTest allParallelUnitAndIntegrationTest --stacktrace"
|
2019-09-19 17:41:06 +00:00
|
|
|
}
|
2019-10-08 14:33:24 +00:00
|
|
|
}
|
2019-09-16 10:29:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-08 14:33:24 +00:00
|
|
|
post {
|
|
|
|
always {
|
2019-10-29 16:23:22 +00:00
|
|
|
archiveArtifacts artifacts: '**/pod-logs/**/*.log', fingerprint: false
|
2019-10-08 14:33:24 +00:00
|
|
|
junit '**/build/test-results-xml/**/*.xml'
|
2019-09-16 10:29:58 +00:00
|
|
|
}
|
2019-10-08 14:33:24 +00:00
|
|
|
cleanup {
|
|
|
|
deleteDir() /* clean up our workspace */
|
2019-09-16 10:29:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|