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

21
Jenkinsfile vendored Normal file
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}"
}
}
}
}

0
dist/.gitkeep vendored Normal file
View File

8
squishy Normal file
View File

@ -0,0 +1,8 @@
Output "dist/hoggit_framework.lua"
Main "lib/error_handling.lua"
Main "lib/logging.lua"
Main "lib/utils.lua"
Main "lib/spawner.lua"
Main "lib/communication.lua"
Main "lib/group.lua"