29 lines
713 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
}
|