Embed build information into server binaries.

This commit is contained in:
Pieter-Jan Briers
2020-04-25 22:12:43 +02:00
parent 4c08e66254
commit 5b885357b6
2 changed files with 68 additions and 0 deletions

5
Jenkinsfile vendored
View File

@@ -10,6 +10,11 @@ pipeline {
stage('Build') {
steps {
sh 'Tools/package_release_build.py -p windows mac linux'
}
}
stage('Update build info') {
steps {
sh 'Tools/gen_build_info.py'
archiveArtifacts artifacts: 'release/*.zip'
}
}