import sources from develop/0.1.0

This commit is contained in:
Thomas Peetz
2025-04-29 12:52:55 +02:00
committed by Thomas Peetz
parent c30bdd1cd5
commit 19a5623075
670 changed files with 35977 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
node {
stage "Checkout"
checkout scm
stage 'Prepare Gradle build'
sh "chmod +x gradlew"
stage 'Stage Build'
sh "./gradlew --no-daemon clean build -x findbugsMain -x findbugsTest -x test"
stage 'Archive Artifacts'
archiveArtifacts allowEmptyArchive: true, artifacts: '**/build/reports/*/*.xml', defaultExcludes: false, onlyIfSuccessful: true
archiveArtifacts allowEmptyArchive: true, artifacts: '**/reports/*/*.html'
junit allowEmptyResults: true, testResults: '**/build/test-results/*.xml'
//step([$class: 'CheckStylePublisher', pattern: '**/build/reports/checkstyle/*.xml'])
//step([$class: 'FindBugsPublisher', pattern: '**/build/reports/findbugs/*.xml'])
}