Disable database tests in Jenkins

Disabled tests that require a database connection to prevent failures in Jenkins where there isn't a database. Updated Jenkinsfile to include a property that skips these tests during the build process.
This commit is contained in:
2024-08-04 22:52:01 +02:00
parent 4c70082f67
commit cb7bb60178
2 changed files with 8 additions and 1 deletions
Vendored
+1 -1
View File
@@ -3,7 +3,7 @@ pipeline {
stages {
stage('Gradle') {
steps {
sh 'bash gradlew build'
sh 'bash gradlew build -DdontRunDatabaseTests=true'
}
}
stage('Archive') {