Improved build system

This commit is contained in:
WolverinDEV 2020-01-26 17:01:33 +01:00
parent b1727206c0
commit ea7c82ec42
2 changed files with 171 additions and 369 deletions

504
Jenkinsfile vendored
View File

@ -3,386 +3,160 @@ pipeline {
parameters { parameters {
booleanParam(defaultValue: true, description: 'Deploy this build', name: 'deploy_build') booleanParam(defaultValue: true, description: 'Deploy this build', name: 'deploy_build')
choice(choices: ['none', 'x86_debug', 'x86_release', 'x86_stable', 'amd64_debug', 'amd64_release', 'amd64_stable', 'arm32v7_debug', 'arm32v7_release', 'arm32v7_stable'], description: 'Which target do you want to build?', name: 'target') booleanParam(name: 'build_amd64', defaultValue: false, description: 'Build for amd64')
booleanParam(name: 'build_arm32v7', defaultValue: false, description: 'Build for arm32v7')
booleanParam(name: 'build_x86', defaultValue: false, description: 'Build for x86')
choice(choices: ['none', 'debug', 'optimized', 'stable'], description: 'What kind of build do you want to run?', name: 'build_type')
} }
environment { environment {
//CMake specific flags //CMake specific flags
CMAKE_OPTIONS = '' CMAKE_OPTIONS = ''
CMAKE_MAKE_OPTIONS = '-j32' CMAKE_MAKE_OPTIONS = '-j32'
//Make specific flags //Make specific flags
MAKE_OPTIONS = '-j32' MAKE_OPTIONS = '-j32'
JENKINS_BUILD_TARGET="${params.target}" JENKINS_BUILD_TARGET="${params.target}"
} }
stages { stages {
/* build all amd64 stuff */ /* build all amd64 stuff */
stage ('build::amd64') { stage ('build::amd64') {
agent { agent {
label 'linux && amd64 && teaspeak' label 'linux && amd64 && teaspeak'
} }
when {
expression { params.target == "amd64_debug" || params.target == "amd64_release" || params.target == "amd64_stable" }
}
environment {
build_os_type="linux"
build_os_arch="amd64"
}
stages {
stage ('build::amd64::libraries') {
environment {
CMAKE_BUILD_TYPE="RelWithDebInfo" /* we build out libraries every time in release mode! (Performance improve) */
}
steps { when {
sh './attach_modules.sh' expression { params.build_amd64 }
sh 'cd libraries; ./build.sh' }
}
} environment {
build_os_type="linux"
build_os_arch="amd64"
stage ('build::amd64::debug') { }
when {
expression { params.target == "amd64_debug" } stages {
} stage ('build::amd64::libraries') {
environment {
stages { CMAKE_BUILD_TYPE="RelWithDebInfo" /* we build out libraries every time in release mode! (Performance improve) */
stage ('build::amd64::debug::build') { }
environment {
TEASPEAK_BUILD_TYPE="Debug"
CMAKE_BUILD_TYPE="Debug"
TEASPEAK_DEPLOY_TYPE_SPECIFIER="-DBUILD_TYPE=1 -DBUILD_TYPE_NAME='beta'"
}
steps { steps {
sh './build_teaspeak.sh' sh './attach_modules.sh'
} sh 'cd libraries; ./build.sh'
} }
}
stage ('build::amd64::build') {
steps {
sh './build_teaspeak.sh'
}
}
stage ('build::amd64::debug::deploy') { stage ('build::amd64::deploy') {
when { when {
expression { params.deploy_build } expression { params.deploy_build }
} }
steps { steps {
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/amd64_debug' sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/amd64_${params.build_type}'
} }
} }
} }
} }
stage ('build::amd64::release') {
when {
expression { params.target == "amd64_release" }
}
stages {
stage ('build::amd64::release::build') {
environment {
TEASPEAK_BUILD_TYPE="Release"
CMAKE_BUILD_TYPE="RelWithDebInfo"
TEASPEAK_DEPLOY_TYPE_SPECIFIER="-DBUILD_TYPE=1 -DBUILD_TYPE_NAME='beta'"
}
steps { /* build all x86 stuff */
sh './build_teaspeak.sh' stage ('build::x86') {
} agent {
} label 'linux && x86 && teaspeak'
}
stage ('build::amd64::release::deploy') { when {
when { expression { params.build_x86 }
expression { params.deploy_build } }
}
environment {
build_os_type="linux"
build_os_arch="x86"
}
stages {
stage ('build::x86::libraries') {
environment {
CMAKE_BUILD_TYPE="RelWithDebInfo" /* we build out libraries every time in release mode! (Performance improve) */
}
steps { steps {
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/amd64_optimized' sh './attach_modules.sh'
} sh 'cd libraries; ./build.sh'
} }
} }
}
stage ('build::amd64::stable') { stage ('build::x86::build') {
when { steps {
expression { params.target == "amd64_stable" } sh './build_teaspeak.sh'
} }
}
stages {
stage ('build::amd64::stable::build') {
environment {
TEASPEAK_BUILD_TYPE="Release"
CMAKE_BUILD_TYPE="RelWithDebInfo"
TEASPEAK_DEPLOY_TYPE_SPECIFIER="-DBUILD_TYPE=0 -DBUILD_TYPE_NAME=''"
}
steps { stage ('build::x86::deploy') {
sh './build_teaspeak.sh' when {
} expression { params.deploy_build }
} }
stage ('build::amd64::stable::deploy') { steps {
when { sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/x86_${params.build_type}'
expression { params.deploy_build } }
} }
}
}
steps { /* build all arm32v7 stuff */
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/amd64_stable' stage ('build::arm32v7') {
} agent {
} label 'linux && arm32v7 && teaspeak'
} }
}
}
}
/* build all x86 stuff */
stage ('build::x86') {
agent {
label 'linux && x86 && teaspeak'
}
when {
expression { params.target == "x86_debug" || params.target == "x86_release" || params.target == "x86_stable" }
}
environment {
build_os_type="linux"
build_os_arch="x86"
}
stages {
stage ('build::x86::libraries') {
environment {
CMAKE_BUILD_TYPE="RelWithDebInfo" /* we build out libraries every time in release mode! (Performance improve) */
BUILD_ARCH_TARGET="x86"
}
steps { when {
sh './attach_modules.sh' expression { params.build_arm32v7 }
sh 'cd libraries; ./build.sh' }
}
} environment {
build_os_type="linux"
build_os_arch="arm32v7"
stage ('build::x86::debug') { }
when {
expression { params.target == "x86_debug" } stages {
} stage ('build::x86::libraries') {
environment {
stages { CMAKE_BUILD_TYPE="RelWithDebInfo" /* we build out libraries every time in release mode! (Performance improve) */
stage ('build::x86::debug::build') { }
environment {
TEASPEAK_BUILD_TYPE="Debug"
CMAKE_BUILD_TYPE="Debug"
TEASPEAK_DEPLOY_TYPE_SPECIFIER="-DBUILD_TYPE=1 -DBUILD_TYPE_NAME='beta'"
}
steps { steps {
sh './build_teaspeak.sh' sh './attach_modules.sh'
} sh 'cd libraries; ./build.sh'
} }
}
stage ('build::arm32v7::build') {
steps {
sh './build_teaspeak.sh'
}
}
stage ('build::x86::debug::deploy') { stage ('build::arm32v7::deploy') {
when { when {
expression { params.deploy_build } expression { params.deploy_build }
} }
steps { steps {
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/x86_debug' sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/arm32v7_${params.build_type}'
} }
} }
} }
} }
}
stage ('build::x86::release') {
when {
expression { params.target == "x86_release" }
}
stages {
stage ('build::x86::release::build') {
environment {
TEASPEAK_BUILD_TYPE="Release"
CMAKE_BUILD_TYPE="RelWithDebInfo"
TEASPEAK_DEPLOY_TYPE_SPECIFIER="-DBUILD_TYPE=1 -DBUILD_TYPE_NAME='beta'"
}
steps {
sh './build_teaspeak.sh'
}
}
stage ('build::x86::release::deploy') {
when {
expression { params.deploy_build }
}
steps {
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/x86_optimized'
}
}
}
}
stage ('build::x86::stable') {
when {
expression { params.target == "x86_stable" }
}
stages {
stage ('build::x86::stable::build') {
environment {
TEASPEAK_BUILD_TYPE="Release"
CMAKE_BUILD_TYPE="RelWithDebInfo"
TEASPEAK_DEPLOY_TYPE_SPECIFIER="-DBUILD_TYPE=0 -DBUILD_TYPE_NAME=''"
}
steps {
sh './build_teaspeak.sh'
}
}
stage ('build::x86::stable::deploy') {
when {
expression { params.deploy_build }
}
steps {
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/x86_stable'
}
}
}
}
}
}
/* build all arm32v7 stuff */
stage ('build::arm32v7') {
agent {
label 'linux && arm32v7 && teaspeak'
}
when {
expression { params.target == "arm32v7_debug" || params.target == "arm32v7_release" || params.target == "arm32v7_stable" }
}
environment {
build_os_type="linux"
build_os_arch="arm32v7"
}
stages {
stage ('build::arm32v7::libraries') {
environment {
CMAKE_BUILD_TYPE="RelWithDebInfo" /* we build out libraries every time in release mode! (Performance improve) */
}
steps {
sh './attach_modules.sh'
sh 'cd libraries; ./build.sh'
}
}
stage ('build::arm32v7::debug') {
when {
expression { params.target == "arm32v7_debug" }
}
stages {
stage ('build::amd64::debug::build') {
environment {
TEASPEAK_BUILD_TYPE="Debug"
CMAKE_BUILD_TYPE="Debug"
TEASPEAK_DEPLOY_TYPE_SPECIFIER="-DBUILD_TYPE=1 -DBUILD_TYPE_NAME='beta'"
}
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/arm32v7_debug'
}
}
}
}
stage ('build::arm32v7::release') {
when {
expression { params.target == "arm32v7_release" }
}
stages {
stage ('build::arm32v7::release::build') {
environment {
TEASPEAK_BUILD_TYPE="Release"
CMAKE_BUILD_TYPE="RelWithDebInfo"
TEASPEAK_DEPLOY_TYPE_SPECIFIER="-DBUILD_TYPE=1 -DBUILD_TYPE_NAME='beta'"
}
steps {
sh './build_teaspeak.sh'
}
}
stage ('build::arm32v7::release::deploy') {
when {
expression { params.deploy_build }
}
steps {
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/arm32v7_optimized'
}
}
}
}
stage ('build::arm32v7::stable') {
when {
expression { params.target == "arm32v7_stable" }
}
stages {
stage ('build::arm32v7::stable::build') {
environment {
TEASPEAK_BUILD_TYPE="Release"
CMAKE_BUILD_TYPE="RelWithDebInfo"
TEASPEAK_DEPLOY_TYPE_SPECIFIER="-DBUILD_TYPE=0 -DBUILD_TYPE_NAME=''"
}
steps {
sh './build_teaspeak.sh'
}
}
stage ('build::arm32v7::stable::deploy') {
when {
expression { params.deploy_build }
}
steps {
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/arm32v7_stable'
}
}
}
}
}
}
}
} }

View File

@ -1,6 +1,33 @@
#!/bin/bash #!/bin/bash
_build_helper_dir="$(pwd)/build-helpers" _build_helper_dir="$(pwd)/build-helpers"
_build_type="Debug"
if [[ -n "${params.build_type}" ]]; then
echo "This is an automated jenkins build. Initializing variables."
if [[ "${params.build_type}" == "debug" ]]; then
echo "Initializing debug session."
export _build_type="Debug"
# shellcheck disable=SC2089
export TEASPEAK_DEPLOY_TYPE_SPECIFIER="-DBUILD_TYPE=1 -DBUILD_TYPE_NAME=\"beta\""
elif [[ "${params.build_type}" == "optimized" ]]; then
echo "Initializing optimized session."
export _build_type="RelWithDebInfo"
# shellcheck disable=SC2089
export TEASPEAK_DEPLOY_TYPE_SPECIFIER="-DBUILD_TYPE=1 -DBUILD_TYPE_NAME=\"beta\""
elif [[ "${params.build_type}" == "stable" ]]; then
echo "Initializing stable session."
export _build_type="RelWithDebInfo"
# shellcheck disable=SC2089
export TEASPEAK_DEPLOY_TYPE_SPECIFIER="-DBUILD_TYPE=0 -DBUILD_TYPE_NAME=\"\""
else
echo "Unknown target build type: ${params.build_type}"
exit 1
fi
fi
# shellcheck disable=SC2154 # shellcheck disable=SC2154
if [[ "$no_web" == "1" ]]; then if [[ "$no_web" == "1" ]]; then
echo "Disabling web support" echo "Disabling web support"
@ -10,13 +37,14 @@ else
fi fi
cd TeaSpeak || exit 1 cd TeaSpeak || exit 1
if [ -d build ]; then if [[ -d build ]]; then
rm -r build rm -r build
fi fi
mkdir build && cd build || exit 1 mkdir build || exit 1
cd build || exit 1
echo "Build type: ${TEASPEAK_BUILD_TYPE}" echo "Build type: $_build_type"
cmake .. -DCMAKE_BUILD_TYPE="${TEASPEAK_BUILD_TYPE}" -DCMAKE_CXX_FLAGS=" ${CXX_FLAGS}" -DBUILD_INCLUDE_FILE="$_build_helper_dir"/cmake/config/tearoot-server.cmake -DCMAKE_MODULE_PATH="$_build_helper_dir"/cmake/ -DDISABLE_QT=1 -DDISABLE_CUSTOM_OUTPUT=ON -DDISABLE_QT=ON -DCOMPILE_WEB_CLIENT="$_web_flag" $TEASPEAK_DEPLOY_TYPE_SPECIFIER cmake .. -DCMAKE_BUILD_TYPE="$_build_type" -DCMAKE_CXX_FLAGS="${CXX_FLAGS}" -DBUILD_INCLUDE_FILE="$_build_helper_dir"/cmake/config/tearoot-server.cmake -DCMAKE_MODULE_PATH="$_build_helper_dir"/cmake/ -DDISABLE_QT=1 -DDISABLE_CUSTOM_OUTPUT=ON -DDISABLE_QT=ON -DCOMPILE_WEB_CLIENT="$_web_flag" $TEASPEAK_DEPLOY_TYPE_SPECIFIER
_code=$? _code=$?
if [[ $_code -ne 0 ]]; then if [[ $_code -ne 0 ]]; then
echo "Failed to run CMAKE project" echo "Failed to run CMAKE project"