mirror of
https://github.com/corda/corda.git
synced 2025-01-30 16:14:39 +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
44 lines
1.2 KiB
Groovy
44 lines
1.2 KiB
Groovy
buildscript {
|
|
Properties constants = new Properties()
|
|
file("../constants.properties").withInputStream { constants.load(it) }
|
|
|
|
ext {
|
|
guava_version = constants.getProperty("guavaVersion")
|
|
class_graph_version = constants.getProperty('classgraphVersion')
|
|
assertj_version = '3.9.1'
|
|
junit_version = '4.12'
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
|
|
allprojects {
|
|
tasks.withType(Test) {
|
|
// Prevent the project from creating temporary files outside of the build directory.
|
|
systemProperty 'java.io.tmpdir', buildDir.absolutePath
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
runtime
|
|
}
|
|
|
|
dependencies {
|
|
// Add the top-level projects ONLY to the host project.
|
|
runtime project.childProjects.collect { n, p ->
|
|
project(p.path)
|
|
}
|
|
compile gradleApi()
|
|
compile "io.fabric8:kubernetes-client:4.4.1"
|
|
compile 'org.apache.commons:commons-compress:1.19'
|
|
compile 'org.apache.commons:commons-lang3:3.9'
|
|
compile 'commons-codec:commons-codec:1.13'
|
|
compile "io.github.classgraph:classgraph:$class_graph_version"
|
|
compile "com.bmuschko:gradle-docker-plugin:5.0.0"
|
|
testCompile "junit:junit:$junit_version"
|
|
}
|