Added Jenkinsfile

This commit is contained in:
Jeremy Smitherman 2018-12-26 00:45:52 -06:00
parent f122c10fb3
commit e336cffcb9

11
Jenkinsfile vendored
View File

@ -1,15 +1,14 @@
pipeline { pipeline {
agent { agent any
}
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
sh '/opt/squish/bin/squish --no-minify'
sh 'ldoc {env.WORKSPACE}'
} }
} }
stage('Deploy') { /* stage('Deploy') {
when { when {
branch 'production' branch 'production'
} }
@ -17,6 +16,6 @@ pipeline {
steps { steps {
} }
} }*/
} }
} }