Compare commits

...

11 Commits

Author SHA1 Message Date
19d88dab4b
Merge branch 'master' into fix/pipeline
All checks were successful
JaCoCo Coverage #### Project Overview No changes detected, that affect the code coverage. * Line Coverage: 50.00% (2/4) * Lines of Code: 4 * Cyclomatic Complexity: 3 #### Quality Gates Summary Overall result: Success Output truncated.
Test / Build passed: 1
2025-02-20 08:51:13 +00:00
b3472f9a50
fix pipeline
All checks were successful
JaCoCo Coverage #### Project Overview No changes detected, that affect the code coverage. * Line Coverage: 50.00% (2/4) * Lines of Code: 4 * Cyclomatic Complexity: 3 #### Quality Gates Summary Overall result: Success Output truncated.
Test / Build passed: 1
2025-02-20 08:43:38 +00:00
Nilton Constantino
2ae4277f27 add withChecks into pipeline 2025-02-19 13:34:25 +00:00
Nilton Constantino
90e1258c09 add withChecks into pipeline 2025-02-19 13:19:43 +00:00
Nilton Constantino
0a6a9bae49 add withChecks into pipeline 2025-02-19 13:18:27 +00:00
Nilton Constantino
7c924fbef2 add withChecks into pipeline 2025-02-19 13:10:15 +00:00
Nilton Constantino
fdbaeed699 add withChecks into pipeline 2025-02-19 13:09:41 +00:00
Nilton Constantino
e69da61bf0 add withChecks into pipeline 2025-02-19 13:08:27 +00:00
Nilton Constantino
87096e1fd9 changes 2025-02-19 10:27:54 +00:00
Nilton Constantino
124d9a5a9b changes 2025-02-19 10:27:10 +00:00
Nilton Constantino
def2072894 fix jenkins file 2025-02-19 08:58:22 +00:00
3 changed files with 73 additions and 10 deletions

44
Jenkinsfile vendored
View File

@ -4,17 +4,43 @@ pipeline {
stages {
stage('Build') {
steps {
echo 'Building..'
./gradlew clean build
withChecks(name: 'Test', includeStage: true) {
withGradle {
sh """
./gradlew clean test jacocoTestReport jacocoTestCoverageVerification --no-daemon
"""
}
recordCoverage(tools: [[parser: 'JACOCO', pattern: '**/build/reports/jacoco/test/jacoco*.xml']],
id: 'jacoco',
name: 'JaCoCo Coverage',
sourceCodeRetention: 'EVERY_BUILD',
qualityGates: [
[threshold: 40.0, metric: 'CLASS', baseline: 'PROJECT', unstable: true],
[threshold: 40.0, metric: 'METHOD', baseline: 'PROJECT', unstable: true],
[threshold: 40.0, metric: 'LINE', baseline: 'PROJECT', unstable: true],
[threshold: 40.0, metric: 'INSTRUCTION', baseline: 'PROJECT', unstable: true],
[threshold: 40.0, metric: 'BRANCH', baseline: 'PROJECT', unstable: true]])
junit testResults: '**/build/test-results/test/TEST-*.xml'
}
}
}
stage('Test') {
} // Test
stage('Reports') {
steps {
echo 'Testing..'
./gradlew test
script {
// archiveArtifacts artifacts: '**/coverage-sources.zip', allowEmptyArchive: false, fingerprint: false, onlyIfSuccessful: false
publishHTML (target: [
allowMissing: true,
alwaysLinkToLastBuild: false,
keepAll: true,
reportDir: 'app/build/reports/jacoco/test/html',
reportFiles: 'index.html',
reportName: 'Coverage Report'
])
// def pmd = scanForIssues tool: [$class: 'Pmd'], pattern: 'lib/build/reports/pmd/*.xml'
// publishIssues issues: [pmd]
}
}
}
} // Reports
}
}

View File

@ -0,0 +1 @@
[SIMPLE TEST FOR JENKINS]

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,40 @@ java {
}
}
jacoco {
toolVersion = "0.8.12"
}
tasks.jacocoTestReport {
reports {
xml.required.set(true)
csv.required.set(false)
html.required.set(true)
}
}
//tasks.jacocoTestCoverageVerification {
// violationRules {
// rule {
// limit {
// minimum = "0.2".toBigDecimal()
// }
// }
//
// rule {
// isEnabled = false
// element = "CLASS"
// includes = listOf("jenkins.test.*")
//
// limit {
// counter = "LINE"
// value = "TOTALCOUNT"
// minimum = "0.3".toBigDecimal()
// }
// }
// }
//}
application {
// Define the main class for the application.
mainClass.set("jenkins.test.App")