fix/pipeline #16

Closed
bquarkz wants to merge 16 commits from fix/pipeline into master
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 407bc6311c - Show all commits

2
Jenkinsfile vendored
View File

@ -6,7 +6,7 @@ pipeline {
steps {
withChecks(name: 'test-coverage', includeStage: true) {
sh './gradlew clean test jacocoTestReport jacocoTestCoverageVerification'
junit '**/build/test-results/test/TEST-*.xml'
// junit '**/build/test-results/test/TEST-*.xml'
recordCoverage(tools: [[parser: 'JACOCO']],
id: 'jacoco', name: 'JaCoCo Coverage',
sourceCodeRetention: 'EVERY_BUILD'

View File

@ -42,7 +42,7 @@ tasks.jacocoTestReport {
xml.required.set(true)
xml.outputLocation.set(file("build/reports/jacoco/test/jacoco.xml"))
csv.required.set(false)
html.required.set(true)
html.required.set(false)
}
}