mirror of
https://github.com/corda/corda.git
synced 2024-12-19 13:08:04 +00:00
298c91ce82
* add ability to index by class OR method * disable unit tests again * pending commit * stream output of build for debugging * remove git from the base image * re-enable NodeRPCTests * add ability to distribute tests based on TeamCity CSV output for test times * try enabling unit tests again after test distribution has been fixed * refactor BucketingAllocator to be a class, which bucketingAllocatorTask delegates to. * finishing touches for improved test distribution * create new pipelines for builds
59 lines
2.1 KiB
Groovy
59 lines
2.1 KiB
Groovy
import static com.r3.build.BuildControl.killAllExistingBuildsForJob
|
|
@Library('existing-build-control')
|
|
import static com.r3.build.BuildControl.killAllExistingBuildsForJob
|
|
|
|
killAllExistingBuildsForJob(env.JOB_NAME, env.BUILD_NUMBER.toInteger())
|
|
|
|
pipeline {
|
|
agent { label 'k8s' }
|
|
options { timestamps() }
|
|
|
|
environment {
|
|
DOCKER_TAG_TO_USE = "${UUID.randomUUID().toString().toLowerCase().subSequence(0, 12)}"
|
|
EXECUTOR_NUMBER = "${env.EXECUTOR_NUMBER}"
|
|
BUILD_ID = "${env.BUILD_ID}-${env.JOB_NAME}"
|
|
}
|
|
|
|
stages {
|
|
stage('Corda - Generate Build Image') {
|
|
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}\" " +
|
|
"-Ddocker.provided.tag=\"\${DOCKER_TAG_TO_USE}\"" +
|
|
" clean pushBuildImage"
|
|
}
|
|
sh "kubectl auth can-i get pods"
|
|
}
|
|
}
|
|
|
|
stage('Corda - Run Tests') {
|
|
stage('Integration Tests') {
|
|
steps {
|
|
sh "./gradlew " +
|
|
"-DbuildId=\"\${BUILD_ID}\" " +
|
|
"-Dkubenetize=true " +
|
|
"-Ddocker.tag=\"\${DOCKER_TAG_TO_USE}\"" +
|
|
" allParallelIntegrationTest"
|
|
if (env.CHANGE_ID) {
|
|
pullRequest.createStatus(status: 'success',
|
|
context: 'continuous-integration/jenkins/pr-merge/integrationTest',
|
|
description: 'Integration Tests Passed',
|
|
targetUrl: "${env.JOB_URL}/testResults")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
post {
|
|
always {
|
|
junit '**/build/test-results-xml/**/*.xml'
|
|
}
|
|
cleanup {
|
|
deleteDir() /* clean up our workspace */
|
|
}
|
|
}
|
|
} |