Compare commits

..

No commits in common. "39a361ec4138e4e2fe48f3ec98a5a0c7ee22e929" and "d10fbbd396585cc0cf1f5cee8dcc8c388a80dbac" have entirely different histories.

2 changed files with 4 additions and 47 deletions

14
Jenkinsfile vendored
View File

@ -2,18 +2,12 @@ pipeline {
agent any agent any
stages { stages {
stage('build') { stage('Test') {
steps { steps {
withChecks(name: 'test-coverage', includeStage: true) { withChecks(name: 'Test', includeStage: true) {
sh './gradlew clean test jacocoTestReport jacocoTestCoverageVerification' echo 'Testing..'
sh './gradlew clean test'
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'
// , qualityGates: [
// [threshold: 40.0, metric: 'LINE', baseline: 'PROJECT', unstable: true],
// [threshold: 40.0, metric: 'BRANCH', baseline: 'PROJECT', unstable: true]]
)
} }
} }
} }

View File

@ -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,41 +31,6 @@ java {
} }
} }
jacoco {
toolVersion = "0.8.12"
}
tasks.jacocoTestReport {
reports {
xml.required.set(true)
xml.outputLocation.set(file("build/reports/jacoco/test/jacoco.xml"))
csv.required.set(false)
html.required.set(true)
}
}
tasks.jacocoTestCoverageVerification {
violationRules {
rule {
limit {
minimum = "0.4".toBigDecimal()
}
}
rule {
isEnabled = true
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")