Create a simple Jenkinsfile

This is just something basic to start with for our Patron generation
This commit is contained in:
R. Tyler Croy 2016-04-27 15:36:27 -07:00
parent 1d85be9e35
commit 8de7c7176f
1 changed files with 12 additions and 0 deletions

12
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,12 @@
#!/usr/bin/env groovy
node {
stage "Checkout"
checkout scm
stage 'Build HTML'
withEnv(["JAVA_HOME=${tool 'jdk8'}",
"PATH+GROOVY=${tool 'groovy'}/bin"]) {
sh 'groovy ./build.groovy'
}
}