33 lines
1.0 KiB
Groovy
33 lines
1.0 KiB
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Setup') {
|
|
steps {
|
|
sh 'git submodule update --init --recursive'
|
|
// Do a git fetch to make sure tags in the engine get pulled in if they've been added later.
|
|
// Can happen if somebody forgot to tag the engine then tried to fix it by tagging later.
|
|
sh 'cd RobustToolbox && git fetch && cd ..'
|
|
}
|
|
}
|
|
stage('Build') {
|
|
steps {
|
|
sh 'Tools/package_server_build.py -p windows mac linux linux-arm64'
|
|
sh 'Tools/package_client_build.py'
|
|
}
|
|
}
|
|
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'
|
|
}
|
|
}
|
|
}
|
|
}
|