Files
OldThink/Jenkinsfile

18 lines
379 B
Plaintext
Raw Normal View History

pipeline {
agent any
stages {
stage('Setup') {
steps {
sh 'git submodule update --init --recursive'
}
}
stage('Build') {
steps {
2019-03-22 02:13:19 +01:00
sh 'Tools/package_release_build.py -p windows mac linux'
archiveArtifacts artifacts: 'release/*.zip'
}
}
}
}