add Jenkinsfile

This commit is contained in:
Len 2023-12-30 11:30:48 +01:00
parent 875e8f3dbe
commit 77a9ffc62e

8
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,8 @@
pipeline {
stage('Checkout') {
checkout scm
}
stage ('Build') {
sh './gradlew build'
}
}