Update 'Jenkinsfile'

This commit is contained in:
Quentin Legot 2023-02-13 17:40:16 +01:00
parent d161a9d145
commit 50324824c8

9
Jenkinsfile vendored
View File

@ -5,13 +5,18 @@ pipeline {
stage('Build') { stage('Build') {
steps { steps {
echo 'Building..' echo 'Building..'
sh 'gradle build' withGradle {
sh './gradlew build'
}
} }
} }
stage('Test') { stage('Test') {
steps { steps {
echo 'Testing...' echo 'Testing...'
sh 'gradle test' withGradle {
sh './gradlew test'
}
} }
} }
} }