mirror of
https://gitlab.com/hoggit/developers/hoggit.git
synced 2026-08-13 01:06:49 +00:00
Added squishy file, added dist folder, added Jenkinsfile
This commit is contained in:
Vendored
+21
@@ -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}"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user