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