This commit is contained in:
Quentin Legot 2023-02-13 17:51:01 +01:00
commit d71ff26617

9
Jenkinsfile vendored
View File

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