Files
tbd-station-14/Jenkinsfile
2020-04-27 12:06:18 +02:00

29 lines
713 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 linux-arm64'
}
}
stage('Update build info') {
steps {
sh 'Tools/gen_build_info.py'
archiveArtifacts artifacts: 'release/*.zip'
}
}
stage('Generate checksums') {
steps {
sh 'Tools/generate_hashes.ps1'
archiveArtifacts artifacts: 'release/*.zip.sha256'
}
}
}
}