Compare commits
No commits in common. "171672088d9180b97470f2ef10ff388742d289d5" and "2ae4277f27e1680e6e48c41ddf89c892e93d47c6" have entirely different histories.
171672088d
...
2ae4277f27
47
Jenkinsfile
vendored
47
Jenkinsfile
vendored
@ -2,45 +2,16 @@ pipeline {
|
|||||||
agent any
|
agent any
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage('Build') {
|
stage('Test') {
|
||||||
steps {
|
steps {
|
||||||
withChecks(name: 'Test', includeStage: true) {
|
// withChecks(name: 'Test', includeStage: true) {
|
||||||
withGradle {
|
echo 'Testing..'
|
||||||
sh """
|
sh './gradlew clean test'
|
||||||
./gradlew clean test jacocoTestReport jacocoTestCoverageVerification --no-daemon
|
junit '**/build/test-results/test/TEST-*.xml'
|
||||||
"""
|
// }
|
||||||
}
|
|
||||||
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: 'INSTRUCTION', baseline: 'PROJECT', unstable: true],
|
|
||||||
[threshold: 40.0, metric: 'BRANCH', baseline: 'PROJECT', unstable: true]])
|
|
||||||
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
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -9,7 +9,6 @@
|
|||||||
plugins {
|
plugins {
|
||||||
// Apply the application plugin to add support for building a CLI application in Java.
|
// Apply the application plugin to add support for building a CLI application in Java.
|
||||||
application
|
application
|
||||||
jacoco
|
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
@ -23,7 +22,6 @@ dependencies {
|
|||||||
|
|
||||||
// This dependency is used by the application.
|
// This dependency is used by the application.
|
||||||
implementation("com.google.guava:guava:31.1-jre")
|
implementation("com.google.guava:guava:31.1-jre")
|
||||||
implementation("org.jacoco:org.jacoco.core:0.8.12")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Apply a specific Java toolchain to ease working on different environments.
|
// Apply a specific Java toolchain to ease working on different environments.
|
||||||
@ -33,40 +31,6 @@ java {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
jacoco {
|
|
||||||
toolVersion = "0.8.12"
|
|
||||||
}
|
|
||||||
|
|
||||||
tasks.jacocoTestReport {
|
|
||||||
reports {
|
|
||||||
xml.required.set(true)
|
|
||||||
csv.required.set(false)
|
|
||||||
html.required.set(true)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//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")
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user