Added squishy file, added dist folder, added Jenkinsfile

This commit is contained in:
Jeremy Smitherman
2018-12-26 00:32:57 -06:00
parent fa8a7e0c04
commit e6b83f216c
3 changed files with 29 additions and 0 deletions
Vendored
+21
View File
@@ -0,0 +1,21 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh '/opt/squish/bin/squish --no-minify'
sh "ldoc ${env.WORKSPACE}"
}
}
stage('Deploy') {
when {
tag 'release-*'
}
steps {
sh "python3 /opt/hoggit_releaser/releaser.py ${env.WORKSPACE} ${env.TAG_NAME}"
}
}
}
}