mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
974c45bb3c
* add ability to group test types together * add ability to specify podCount for use in parallel testing * remove compiler xml * add Jenkinsfile to enable scanning * trigger build * add ability to specify what docker tag to use from outside of the build * fix docker work dir * fix pipeline syntax issues * use environment rather than `def` * move agent restrictor outside of stages block * use steps block * more pipeline syntax fixes * even more pipeline syntax fixes * even more pipeline syntax fixes * add kubenetize as property to image build * move clear of docker image to end of build rather than start to prevent colocated builds * escape dollar on docker image remove command * attempt to kill all existing jobs * fix compile issue due to killall_jobs * fix compile issue due to killall_jobs pt2 * fix spelling * make all variables environment variables * add logic to delete images locally after pushing * wrap testing phase with try / finally so that junit reports are always evaluated * change the behaviour around post build actions * break implicit link between testing phase and image building phase, allowing testing to occur without a rebuild and push of image * prepend registry name to provided tag * allow tasks to specify whether they wish to stream output from containers * add timestamps directive to Jenkinsfile to have timing info on output * make KubesTest resilient against transient pod failures in k8s * increase CPU request * add logic to allow specifying container resource requests * attempt to run unit and integration tests in parallel * change unit tests to use 3 cores to allow co-location on 8c machines * join grouped tests together to give pod meaningful name * add step to renew token with GKE * change renew step to use pods instead of nodes * fix bug where memory request is not correctly passed to pod * disable unit tests for now
82 lines
2.6 KiB
Groovy
82 lines
2.6 KiB
Groovy
killall_jobs()
|
|
|
|
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 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.provided.tag=\"\${DOCKER_TAG_TO_USE}\"" +
|
|
" clean pushBuildImage"
|
|
}
|
|
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.tag=\"\${DOCKER_TAG_TO_USE}\"" +
|
|
" allParallelIntegrationTest"
|
|
}
|
|
post {
|
|
always {
|
|
junit '**/build/test-results-xml/**/*.xml'
|
|
}
|
|
}
|
|
}
|
|
// stage('Unit Tests') {
|
|
// steps {
|
|
// sh "./gradlew " +
|
|
// "-DbuildId=\"\${BUILD_ID}\" " +
|
|
// "-Dkubenetize=true " +
|
|
// "-Ddocker.tag=\"\${DOCKER_TAG_TO_USE}\"" +
|
|
// " allParallelUnitTest"
|
|
// }
|
|
// post {
|
|
// always {
|
|
// junit '**/build/test-results-xml/**/*.xml'
|
|
// }
|
|
// }
|
|
// }
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
@NonCPS
|
|
def killall_jobs() {
|
|
def jobname = env.JOB_NAME
|
|
def buildnum = env.BUILD_NUMBER.toInteger()
|
|
|
|
def job = Jenkins.instance.getItemByFullName(jobname)
|
|
for (build in job.builds) {
|
|
if (!build.isBuilding()) {
|
|
continue;
|
|
}
|
|
|
|
if (buildnum == build.getNumber().toInteger()) {
|
|
continue
|
|
}
|
|
|
|
echo "Killing task = ${build}"
|
|
build.doStop();
|
|
}
|
|
} |