improve jenkins (#2)
All checks were successful
JaCoCo Coverage #### Project Overview
No changes detected, that affect the code coverage.
* Line Coverage: 60.67% (15276/25178)
* Branch Coverage: 53.64% (5782/10779)
* Lines of Code: 25178
* Cyclomatic Complexity: 9960
#### Quality Gates Summary
Output truncated.
Test / Build skipped: 11, passed: 545
Intrepid/Prometeu/Studio/pipeline/head This commit looks good
All checks were successful
JaCoCo Coverage #### Project Overview
No changes detected, that affect the code coverage.
* Line Coverage: 60.67% (15276/25178)
* Branch Coverage: 53.64% (5782/10779)
* Lines of Code: 25178
* Cyclomatic Complexity: 9960
#### Quality Gates Summary
Output truncated.
Test / Build skipped: 11, passed: 545
Intrepid/Prometeu/Studio/pipeline/head This commit looks good
Reviewed-on: #2 Co-authored-by: bQUARKz <bquarkz@gmail.com> Co-committed-by: bQUARKz <bquarkz@gmail.com>
This commit is contained in:
parent
676e40d088
commit
11b24b0707
15
files/config/Jenkinsfile
vendored
15
files/config/Jenkinsfile
vendored
@ -5,13 +5,26 @@ pipeline {
|
|||||||
gradle 'gradle-9.3.1'
|
gradle 'gradle-9.3.1'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
environment {
|
||||||
|
GRADLE_USER_HOME = '/var/jenkins_home/.gradle'
|
||||||
|
GRADLE_OPTS = '-Dorg.gradle.parallel=true -Dorg.gradle.caching=true'
|
||||||
|
JAVA_OPTS = '-Xmx2g'
|
||||||
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
steps {
|
steps {
|
||||||
withChecks(name: 'Test', includeStage: true) {
|
withChecks(name: 'Test', includeStage: true) {
|
||||||
withGradle {
|
withGradle {
|
||||||
sh """
|
sh """
|
||||||
gradle clean test jacocoTestReport --no-daemon
|
gradle \
|
||||||
|
clean \
|
||||||
|
test \
|
||||||
|
jacocoTestReport \
|
||||||
|
--parallel \
|
||||||
|
--max-workers=2 \
|
||||||
|
--build-cache \
|
||||||
|
--no-daemon
|
||||||
"""
|
"""
|
||||||
}
|
}
|
||||||
recordCoverage(tools: [[parser: 'JACOCO', pattern: "build/reports/jacoco/jacocoTestReport/jacocoTestReport.xml"]],
|
recordCoverage(tools: [[parser: 'JACOCO', pattern: "build/reports/jacoco/jacocoTestReport/jacocoTestReport.xml"]],
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user