fix/pipeline #21

Closed
bquarkz wants to merge 20 commits from fix/pipeline into master
Showing only changes of commit f26cfa6950 - Show all commits

7
Jenkinsfile vendored
View File

@ -13,6 +13,13 @@ pipeline {
withChecks(name: 'test-coverage', includeStage: true) {
sh './gradlew jacocoTestReport jacocoTestCoverageVerification'
junit '**/build/test-results/test/TEST-*.xml'
recordCoverage(tools: [[parser: 'JACOCO']],
id: 'jacoco', name: 'JaCoCo Coverage',
sourceCodeRetention: 'EVERY_BUILD'
// , qualityGates: [
// [threshold: 60.0, metric: 'LINE', baseline: 'PROJECT', unstable: true],
// [threshold: 60.0, metric: 'BRANCH', baseline: 'PROJECT', unstable: true]]
)
}
}
}