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

11
Jenkinsfile vendored
View File

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