Update 'Jenkinsfile'

This commit is contained in:
Quentin Legot 2023-02-13 17:37:32 +01:00
parent 2eed4d31dc
commit d161a9d145

4
Jenkinsfile vendored
View File

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