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:
Vendored
+1
-1
@@ -3,7 +3,7 @@ pipeline {
|
||||
stages {
|
||||
stage('Gradle') {
|
||||
steps {
|
||||
sh 'bash gradlew build -DdontRunDatabaseTests=true'
|
||||
sh 'bash gradlew build -DdoNotRunDatabaseTests=true'
|
||||
}
|
||||
}
|
||||
stage('Archive') {
|
||||
|
||||
Reference in New Issue
Block a user