Update 'Jenkinsfile'

This commit is contained in:
Quentin Legot 2023-02-13 17:41:28 +01:00
parent 50324824c8
commit 0f67867d23

4
Jenkinsfile vendored
View File

@ -6,7 +6,7 @@ pipeline {
steps { steps {
echo 'Building..' echo 'Building..'
withGradle { withGradle {
sh './gradlew build' sh 'gradle build'
} }
} }
@ -15,7 +15,7 @@ pipeline {
steps { steps {
echo 'Testing...' echo 'Testing...'
withGradle { withGradle {
sh './gradlew test' sh 'gradle test'
} }
} }
} }