Add Jenkinsfile

Signed-off-by: Quentin Legot <legotquentin@gmail.com>
This commit is contained in:
Quentin Legot 2023-02-13 17:13:15 +01:00
parent 553a97fa7a
commit 2eed4d31dc

18
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,18 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
gradle build
}
}
stage('Test') {
steps {
echo 'Testing...'
gradle test
}
}
}
}