Compare commits
No commits in common. "f26cfa6950a4487597efb46f743e12dbfd76a465" and "2ae4277f27e1680e6e48c41ddf89c892e93d47c6" have entirely different histories.
f26cfa6950
...
2ae4277f27
22
Jenkinsfile
vendored
22
Jenkinsfile
vendored
@ -2,25 +2,13 @@ pipeline {
|
||||
agent any
|
||||
|
||||
stages {
|
||||
stage('build') {
|
||||
stage('Test') {
|
||||
steps {
|
||||
withChecks(name: 'build', includeStage: true) {
|
||||
sh './gradlew clean testClasses'
|
||||
}
|
||||
withChecks(name: 'unit-tests', includeStage: true) {
|
||||
sh './gradlew test'
|
||||
}
|
||||
withChecks(name: 'test-coverage', includeStage: true) {
|
||||
sh './gradlew jacocoTestReport jacocoTestCoverageVerification'
|
||||
// withChecks(name: 'Test', includeStage: true) {
|
||||
echo 'Testing..'
|
||||
sh './gradlew clean test'
|
||||
junit '**/build/test-results/test/TEST-*.xml'
|
||||
recordCoverage(tools: [[parser: 'JACOCO']],
|
||||
id: 'jacoco', name: 'JaCoCo Coverage',
|
||||
sourceCodeRetention: 'EVERY_BUILD'
|
||||
// , qualityGates: [
|
||||
// [threshold: 60.0, metric: 'LINE', baseline: 'PROJECT', unstable: true],
|
||||
// [threshold: 60.0, metric: 'BRANCH', baseline: 'PROJECT', unstable: true]]
|
||||
)
|
||||
}
|
||||
// }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,7 +9,6 @@
|
||||
plugins {
|
||||
// Apply the application plugin to add support for building a CLI application in Java.
|
||||
application
|
||||
jacoco
|
||||
}
|
||||
|
||||
repositories {
|
||||
@ -23,7 +22,6 @@ 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.
|
||||
@ -33,32 +31,6 @@ 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")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user