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') { stage('Build') {
steps { steps {
echo 'Building..' echo 'Building..'
gradle build withGradle {
sh 'gradle build'
}
} }
} }
stage('Test') { stage('Test') {
steps { steps {
echo 'Testing...' echo 'Testing...'
gradle test withGradle {
sh 'gradle test'
}
} }
} }
} }