fix/pipeline #16
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@ -4,7 +4,7 @@ pipeline {
|
|||||||
stages {
|
stages {
|
||||||
stage('Test') {
|
stage('Test') {
|
||||||
steps {
|
steps {
|
||||||
withChecks(name: 'Test', includeStage: true) {
|
withChecks(name: 'Test') {
|
||||||
echo 'Testing..'
|
echo 'Testing..'
|
||||||
sh './gradlew clean test'
|
sh './gradlew clean test'
|
||||||
junit '**/build/test-results/test/TEST-*.xml'
|
junit '**/build/test-results/test/TEST-*.xml'
|
||||||
|
|||||||
@ -9,6 +9,7 @@
|
|||||||
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 {
|
||||||
@ -22,6 +23,7 @@ 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.
|
||||||
@ -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 {
|
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