From 405c2a73bd2cd6e82478f499805791c6ad0d69f6 Mon Sep 17 00:00:00 2001 From: Teriuihi Date: Sun, 4 Aug 2024 22:53:35 +0200 Subject: [PATCH] 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. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index bb7aebd..ceed21f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,7 @@ pipeline { stages { stage('Gradle') { steps { - sh 'bash gradlew build -DdontRunDatabaseTests=true' + sh 'bash gradlew build -DdoNotRunDatabaseTests=true' } } stage('Archive') {