hoggit/Jenkinsfile
2018-12-26 00:45:52 -06:00

21 lines
358 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh '/opt/squish/bin/squish --no-minify'
sh 'ldoc {env.WORKSPACE}'
}
}
/* stage('Deploy') {
when {
branch 'production'
}
steps {
}
}*/
}
}