mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
16eb2fce78
* allow a test group to specify taints for the nodes * specify "effect" of toleration modify test groups to use taints modify preallocation to use taints * add extra command line flags for unit test run
74 lines
3.2 KiB
Groovy
74 lines
3.2 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 = "${env.GIT_COMMIT.subSequence(0, 8)}"
|
|
EXECUTOR_NUMBER = "${env.EXECUTOR_NUMBER}"
|
|
BUILD_ID = "${env.BUILD_ID}-${env.JOB_NAME}"
|
|
ARTIFACTORY_CREDENTIALS = credentials('artifactory-credentials')
|
|
}
|
|
|
|
stages {
|
|
stage('Corda Pull Request - 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.build.tag=\"\${DOCKER_TAG_TO_USE}\"" +
|
|
" clean pushBuildImage preAllocateForAllParallelIntegrationTest preAllocateForAllParallelUnitTest --stacktrace"
|
|
}
|
|
sh "kubectl auth can-i get pods"
|
|
}
|
|
}
|
|
|
|
stage('Corda Pull Request - Run Tests') {
|
|
parallel {
|
|
stage('Integration Tests') {
|
|
steps {
|
|
sh "./gradlew " +
|
|
"-DbuildId=\"\${BUILD_ID}\" " +
|
|
"-Dkubenetize=true " +
|
|
"-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}\" " +
|
|
" deAllocateForAllParallelIntegrationTest allParallelIntegrationTest --stacktrace"
|
|
}
|
|
}
|
|
stage('Unit Tests') {
|
|
steps {
|
|
sh "./gradlew " +
|
|
"-DbuildId=\"\${BUILD_ID}\" " +
|
|
"-Dkubenetize=true " +
|
|
"-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}\" " +
|
|
" deAllocateForAllParallelUnitTest allParallelUnitTest --stacktrace"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
post {
|
|
always {
|
|
archiveArtifacts artifacts: '**/pod-logs/**/*.log', fingerprint: false
|
|
junit '**/build/test-results-xml/**/*.xml'
|
|
}
|
|
cleanup {
|
|
deleteDir() /* clean up our workspace */
|
|
}
|
|
}
|
|
} |