Compare commits

..

2 Commits

Author SHA1 Message Date
Nilton Constantino
8d620984e3 add withChecks into pipeline 2025-02-19 14:10:53 +00:00
Nilton Constantino
d10fbbd396 add withChecks into pipeline 2025-02-19 13:38:58 +00:00
2 changed files with 30 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -4,11 +4,11 @@ pipeline {
stages {
stage('Test') {
steps {
// withChecks(name: 'Test', includeStage: true) {
withChecks(name: 'Test') {
echo 'Testing..'
sh './gradlew clean test'
junit '**/build/test-results/test/TEST-*.xml'
// }
}
}
}
}

View File

@ -9,6 +9,7 @@
plugins {
// Apply the application plugin to add support for building a CLI application in Java.
application
jacoco
}
repositories {
@ -22,6 +23,7 @@ dependencies {
// This dependency is used by the application.
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.
@ -31,6 +33,32 @@ java {
}
}
jacoco {
toolVersion = "0.8.12"
}
tasks.jacocoTestCoverageVerification {
violationRules {
rule {
limit {
minimum = "0.4".toBigDecimal()
}
}
rule {
isEnabled = false
element = "CLASS"
includes = listOf("jenkins.test.*")
limit {
counter = "LINE"
value = "TOTALCOUNT"
maximum = "0.3".toBigDecimal()
}
}
}
}
application {
// Define the main class for the application.
mainClass.set("jenkins.test.App")