Compare commits

..

No commits in common. "0f83b57066e165c100a1f1a31b388f2450b3ec03" and "983b67833b438720bdfabc8c9c2f8d2f2f74d12b" have entirely different histories.

2 changed files with 30 additions and 75 deletions

57
Jenkinsfile vendored
View File

@ -2,58 +2,21 @@ pipeline {
agent any agent any
stages { stages {
stage('Build') { stage('build') {
steps { steps {
withChecks(name: 'build', includeStage: false) { withChecks(name: 'build', in) {
withGradle { sh './gradlew clean testClasses'
sh """
./gradlew clean testClasses --no-daemon
"""
} }
withChecks(name: 'unit-tests', in) {
sh './gradlew test'
} }
} withChecks(name: 'test-coverage', in) {
} // Build sh './gradlew jacocoTestReport jacocoTestCoverageVerification'
stage('Test') {
steps {
withChecks(name: 'test-coverage', includeStage: false) {
withGradle {
sh """
./gradlew test jacocoTestReport jacocoTestCoverageVerification --no-daemon
"""
}
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', unstable: true],
[threshold: 40.0, metric: 'METHOD', baseline: 'PROJECT', unstable: true],
[threshold: 40.0, metric: 'LINE', baseline: 'PROJECT', unstable: true],
[threshold: 40.0, metric: 'BRANCH', baseline: 'PROJECT', unstable: true]]
)
}
}
} // Test
stage('Post') {
steps {
script {
junit '**/build/test-results/test/TEST-*.xml' junit '**/build/test-results/test/TEST-*.xml'
// 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]
} }
} }
} // Post }
} }
} }

View File

@ -37,36 +37,28 @@ 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()
}
}
rule {
isEnabled = false
element = "CLASS"
includes = listOf("jenkins.test.*")
limit {
counter = "LINE"
value = "TOTALCOUNT"
maximum = "0.3".toBigDecimal()
}
}
} }
} }
//tasks.jacocoTestCoverageVerification {
// violationRules {
// rule {
// limit {
// minimum = "0.2".toBigDecimal()
// }
// }
//
// rule {
// 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.
mainClass.set("jenkins.test.App") mainClass.set("jenkins.test.App")