Add Jenkinsfile

This commit is contained in:
TheBrokenRail 2020-06-23 22:21:54 -04:00
parent 8e720488fa
commit d3fb414c60
1 changed files with 19 additions and 0 deletions

19
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,19 @@
pipeline {
agent {
docker {
image 'openjdk:8-jdk'
}
}
stages {
stage('Build') {
steps {
sh './gradlew build'
}
post {
success {
archiveArtifacts artifacts: 'build/libs/*', fingerprint: true
}
}
}
}
}