pipeline { agent any parameters { booleanParam(defaultValue: false, description: 'Enabled/disables the building of an optimized build', name: 'build_optimized') booleanParam(defaultValue: true, description: 'Build the libraries as well', name: 'build_libraries') booleanParam(defaultValue: true, description: 'Deploy this build', name: 'deploy_build') choice(choices: ['all', 'x86_debug', 'x64_debug', 'x64_release'], description: 'Which target do you want to build?', name: 'target') } environment { //General flags CXX_FLAGS = '' C_FLAGS = '' //CMake specific flags CMAKE_OPTIONS = '' CMAKE_MAKE_OPTIONS = '-j 12' //Make specific flags MAKE_OPTIONS = '-j 12' } stages { stage ('build') { parallel { stage ('build::x86::debug') { agent { label 'linux && x84 && teaspeak' } when { expression { params.target == "" || params.target == "all" || params.target == "x86_debug" } } stages { stage ('build::x86::debug::libraries') { stages { stage ('build::x86::debug::libraries::update') { steps { sh 'git reset --hard origin/master; git submodule update --init --remote --recursive --force' sh 'git submodule update --merge' sh './attach_modules.sh' } } stage ('build::x86::debug::libraries::build') { when { expression { params.build_libraries } } environment { CMAKE_BUILD_TYPE="Debug" } steps { sh 'cd libraries; ./build.sh' } } } } stage ('build::x86::debug') { environment { TEASPEAK_BUILD_TYPE="Debug" CMAKE_BUILD_TYPE="Debug" } stages { stage ('build::x86::debug::build') { steps { sh './build_teaspeak.sh' } } stage ('build::x86::debug::deploy') { when { expression { params.deploy_build } } steps { sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/x86' } } } } } } stage ('build::amd64::debug') { agent { label 'linux && amd64 && teaspeak' } when { expression { params.target == "" || params.target == "all" || params.target == "x64_debug" } } stages { stage ('build::amd64::debug::libraries') { stages { stage ('build::amd64::debug::libraries::update') { steps { sh 'git reset --hard origin/master; git submodule update --init --remote --recursive --force' sh 'git submodule update --merge' sh './attach_modules.sh' } } stage ('build::amd64::debug::libraries::build') { when { expression { params.build_libraries } } environment { CMAKE_BUILD_TYPE="Debug" } steps { sh 'cd libraries; ./build.sh' } } } } stage ('build::amd64::debug::build') { environment { TEASPEAK_BUILD_TYPE="Debug" CMAKE_BUILD_TYPE="Debug" } steps { sh './build_teaspeak.sh' } } stage ('build::amd64::debug::deploy') { when { expression { params.deploy_build } } steps { sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/amd64' } } } } stage ('build::amd64::release::deploy') { when { expression { params.target == "all" || params.target == "x64_release" || params.build_optimized } } agent { label 'linux && amd64 && teaspeak' } stages { stage ('build::amd64::release::libraries') { stages { stage ('build::amd64::release::libraries::update') { steps { sh 'git reset --hard origin/master; git submodule update --init --remote --recursive --force' sh 'git submodule update --merge' sh './attach_modules.sh' } } stage ('build::amd64::release::libraries::build') { when { expression { params.build_libraries } } environment { CMAKE_BUILD_TYPE="RelWithDebInfo" } steps { sh 'cd libraries; ./build.sh' } } } } stage ('build::amd64::release::build') { environment { TEASPEAK_BUILD_TYPE="Release" CMAKE_BUILD_TYPE="RelWithDebInfo" } steps { sh './build_teaspeak.sh' } } stage ('build::amd64::release::deploy') { when { expression { params.deploy_build } } steps { sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/amd64_optimized' } } } } } } } }