Compare commits
10 Commits
8d620984e3
...
407bc6311c
| Author | SHA1 | Date | |
|---|---|---|---|
| 407bc6311c | |||
| 39a361ec41 | |||
| 9ec20b53e3 | |||
| a86ddef535 | |||
| b3e3a68736 | |||
| f26cfa6950 | |||
| 4b57b3d45a | |||
| 983b67833b | |||
| aae261ffa3 | |||
|
|
9c34ce094f |
16
Jenkinsfile
vendored
16
Jenkinsfile
vendored
@ -2,12 +2,18 @@ pipeline {
|
||||
agent any
|
||||
|
||||
stages {
|
||||
stage('Test') {
|
||||
stage('build') {
|
||||
steps {
|
||||
withChecks(name: 'Test') {
|
||||
echo 'Testing..'
|
||||
sh './gradlew clean test'
|
||||
junit '**/build/test-results/test/TEST-*.xml'
|
||||
withChecks(name: 'test-coverage', includeStage: true) {
|
||||
sh './gradlew clean test jacocoTestReport jacocoTestCoverageVerification'
|
||||
// junit '**/build/test-results/test/TEST-*.xml'
|
||||
recordCoverage(tools: [[parser: 'JACOCO']],
|
||||
id: 'jacoco', name: 'JaCoCo Coverage',
|
||||
sourceCodeRetention: 'EVERY_BUILD'
|
||||
// , qualityGates: [
|
||||
// [threshold: 40.0, metric: 'LINE', baseline: 'PROJECT', unstable: true],
|
||||
// [threshold: 40.0, metric: 'BRANCH', baseline: 'PROJECT', unstable: true]]
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -37,6 +37,15 @@ jacoco {
|
||||
toolVersion = "0.8.12"
|
||||
}
|
||||
|
||||
tasks.jacocoTestReport {
|
||||
reports {
|
||||
xml.required.set(true)
|
||||
xml.outputLocation.set(file("build/reports/jacoco/test/jacoco.xml"))
|
||||
csv.required.set(false)
|
||||
html.required.set(false)
|
||||
}
|
||||
}
|
||||
|
||||
tasks.jacocoTestCoverageVerification {
|
||||
violationRules {
|
||||
rule {
|
||||
@ -46,14 +55,14 @@ tasks.jacocoTestCoverageVerification {
|
||||
}
|
||||
|
||||
rule {
|
||||
isEnabled = false
|
||||
isEnabled = true
|
||||
element = "CLASS"
|
||||
includes = listOf("jenkins.test.*")
|
||||
|
||||
limit {
|
||||
counter = "LINE"
|
||||
value = "TOTALCOUNT"
|
||||
maximum = "0.3".toBigDecimal()
|
||||
minimum = "0.3".toBigDecimal()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user