Add a simple Jenkinsfile for building

This commit is contained in:
R. Tyler Croy 2017-09-10 13:51:27 -07:00
parent 5c89a50ab3
commit 441cabee42
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 13 additions and 0 deletions

13
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env groovy
pipeline {
agent { docker 'openjdk:8-alpine' }
stages {
stage('Build') {
steps {
sh './gradlew'
}
}
}
}