#247 -- Add jenkinsfile

This commit is contained in:
Anton Romanov 2024-05-02 13:00:48 +04:00
parent a9e8336986
commit 70c950cdd7

15
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,15 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
./gradlew build
}
}
stage('Test') {
steps {
./gradlew test
}
}
}
}