improve jenkins
Some checks failed
Intrepid/Prometeu/Studio/pipeline/pr-master There was a failure building this commit
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

This commit is contained in:
bQUARKz 2026-04-08 09:21:39 +01:00
parent 676e40d088
commit 64b9a3ed03
Signed by: bquarkz
SSH Key Fingerprint: SHA256:Z7dgqoglWwoK6j6u4QC87OveEq74WOhFN+gitsxtkf8

View File

@ -5,13 +5,26 @@ pipeline {
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 {
stage('Build') {
steps {
withChecks(name: 'Test', includeStage: true) {
withGradle {
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"]],