Fix typo in Gradle build command in Jenkinsfile

Corrected the parameter for skipping database tests from `dontRunDatabaseTests` to `doNotRunDatabaseTests` in the Gradle build step. This ensures the intended tests are skipped during the build process.
This commit is contained in:
Teriuihi 2024-08-04 22:53:35 +02:00
parent cb7bb60178
commit 405c2a73bd

2
Jenkinsfile vendored
View File

@ -3,7 +3,7 @@ pipeline {
stages {
stage('Gradle') {
steps {
sh 'bash gradlew build -DdontRunDatabaseTests=true'
sh 'bash gradlew build -DdoNotRunDatabaseTests=true'
}
}
stage('Archive') {