Compare commits

..

No commits in common. "5ee039ba1b1019761d789e84d58df8e8dad548f2" and "f26cfa6950a4487597efb46f743e12dbfd76a465" have entirely different histories.

2 changed files with 40 additions and 64 deletions

56
Jenkinsfile vendored
View File

@ -2,44 +2,28 @@ pipeline {
agent any agent any
stages { stages {
stage('Build') { stage('build') {
steps { steps {
withChecks(name: 'Test', includeStage: true) { withChecks(name: 'build', includeStage: true) {
withGradle { sh './gradlew clean testClasses'
sh """ }
./gradlew clean test jacocoTestReport jacocoTestCoverageVerification --no-daemon withChecks(name: 'unit-tests', includeStage: true) {
""" sh './gradlew test'
}
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]]
)
}
}
} }
recordCoverage(tools: [[parser: 'JACOCO', pattern: '**/build/reports/jacoco/test/jacoco*.xml']],
id: 'jacoco',
name: 'Jacoco Coverage',
sourceCodeRetention: 'EVERY_BUILD',
qualityGates: [
[threshold: 40.0, metric: 'CLASS', baseline: 'PROJECT'],
[threshold: 40.0, metric: 'METHOD', baseline: 'PROJECT'],
[threshold: 40.0, metric: 'LINE', baseline: 'PROJECT'],
[threshold: 40.0, metric: 'BRANCH', baseline: 'PROJECT']])
junit testResults: '**/build/test-results/test/TEST-*.xml'
} }
} }
} // Test
stage('Reports') {
steps {
script {
// archiveArtifacts artifacts: '**/coverage-sources.zip', allowEmptyArchive: false, fingerprint: false, onlyIfSuccessful: false
publishHTML (target: [
allowMissing: true,
alwaysLinkToLastBuild: false,
keepAll: true,
reportDir: 'app/build/reports/jacoco/test/html',
reportFiles: 'index.html',
reportName: 'Coverage Report'
])
// def pmd = scanForIssues tool: [$class: 'Pmd'], pattern: 'lib/build/reports/pmd/*.xml'
// publishIssues issues: [pmd]
}
}
} // Reports
}
}

View File

@ -37,35 +37,27 @@ jacoco {
toolVersion = "0.8.12" toolVersion = "0.8.12"
} }
tasks.jacocoTestReport { tasks.jacocoTestCoverageVerification {
reports { violationRules {
xml.required.set(true) rule {
csv.required.set(false) limit {
html.required.set(true) minimum = "0.4".toBigDecimal()
} }
} }
//tasks.jacocoTestCoverageVerification { rule {
// violationRules { isEnabled = false
// rule { element = "CLASS"
// limit { includes = listOf("jenkins.test.*")
// minimum = "0.2".toBigDecimal()
// } limit {
// } counter = "LINE"
// value = "TOTALCOUNT"
// rule { maximum = "0.3".toBigDecimal()
// isEnabled = false }
// element = "CLASS" }
// includes = listOf("jenkins.test.*") }
// }
// limit {
// counter = "LINE"
// value = "TOTALCOUNT"
// minimum = "0.3".toBigDecimal()
// }
// }
// }
//}
application { application {
// Define the main class for the application. // Define the main class for the application.