Update 'Jenkinsfile'

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

11
Jenkinsfile vendored
View File

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