Compare commits
9 Commits
2ae4277f27
...
a86ddef535
| Author | SHA1 | Date | |
|---|---|---|---|
| a86ddef535 | |||
| b3e3a68736 | |||
| f26cfa6950 | |||
| 4b57b3d45a | |||
| 983b67833b | |||
| aae261ffa3 | |||
|
|
9c34ce094f | ||
|
|
8d620984e3 | ||
|
|
d10fbbd396 |
22
Jenkinsfile
vendored
22
Jenkinsfile
vendored
@ -2,13 +2,25 @@ pipeline {
|
|||||||
agent any
|
agent any
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage('Test') {
|
stage('build') {
|
||||||
steps {
|
steps {
|
||||||
// withChecks(name: 'Test', includeStage: true) {
|
withChecks(name: 'build', includeStage: true) {
|
||||||
echo 'Testing..'
|
sh './gradlew clean testClasses'
|
||||||
sh './gradlew clean test'
|
}
|
||||||
|
withChecks(name: 'unit-tests', includeStage: true) {
|
||||||
|
sh './gradlew test'
|
||||||
|
}
|
||||||
|
withChecks(name: 'test-coverage', includeStage: true) {
|
||||||
|
sh './gradlew jacocoTestReport jacocoTestCoverageVerification'
|
||||||
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]]
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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,40 @@ java {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
jacoco {
|
||||||
|
toolVersion = "0.8.12"
|
||||||
|
}
|
||||||
|
|
||||||
|
//tasks.jacocoTestReport {
|
||||||
|
// reports {
|
||||||
|
// xml.required = true
|
||||||
|
// csv.required = false
|
||||||
|
// html.required = 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")
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user