Files
OldThink/Jenkinsfile

29 lines
713 B
Plaintext
Raw Normal View History

pipeline {
agent any
stages {
stage('Setup') {
steps {
sh 'git submodule update --init --recursive'
}
}
stage('Build') {
steps {
2020-04-27 12:06:18 +02:00
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'
}
}
2020-02-07 20:42:19 +01:00
stage('Generate checksums') {
steps {
sh 'Tools/generate_hashes.ps1'
archiveArtifacts artifacts: 'release/*.zip.sha256'
}
}
}
}