Files
tbd-station-14/Jenkinsfile
2019-12-16 00:46:09 +01:00

18 lines
379 B
Groovy

pipeline {
agent any
stages {
stage('Setup') {
steps {
sh 'git submodule update --init --recursive'
}
}
stage('Build') {
steps {
sh 'Tools/package_release_build.py -p windows mac linux'
archiveArtifacts artifacts: 'release/*.zip'
}
}
}
}