Server-Root/Jenkinsfile

193 lines
4.3 KiB
Plaintext
Raw Normal View History

2018-08-08 21:53:18 +02:00
pipeline {
2018-08-09 21:57:58 +02:00
agent any
2018-11-01 16:16:06 +01:00
parameters {
2018-11-01 17:11:47 +01:00
booleanParam(defaultValue: false, description: 'Enabled/disables the building of an optimized build', name: 'build_optimized')
2018-11-01 16:22:28 +01:00
booleanParam(defaultValue: true, description: 'Build the libraries as well', name: 'build_libraries')
2018-11-01 16:28:05 +01:00
booleanParam(defaultValue: true, description: 'Deploy this build', name: 'deploy_build')
2018-11-24 16:26:52 +01:00
choice(choices: ['all', 'x86_debug', 'x64_debug', 'x64_release'], description: 'Which target do you want to build?', name: 'target')
2018-11-01 16:16:06 +01:00
}
2018-11-01 16:42:08 +01:00
environment {
//General flags
CXX_FLAGS = ''
C_FLAGS = ''
//CMake specific flags
CMAKE_OPTIONS = ''
CMAKE_MAKE_OPTIONS = '-j 12'
//Make specific flags
MAKE_OPTIONS = '-j 12'
}
2018-08-09 21:57:58 +02:00
2018-11-01 16:42:47 +01:00
stages {
stage ('build') {
parallel {
stage ('Build x86') {
agent {
label 'linux && x84 && teaspeak'
2018-08-09 21:57:58 +02:00
}
2018-11-24 16:26:52 +01:00
when {
expression { params.target == "" || params.target == "all" || params.target == "x86_debug" }
}
2018-08-09 21:57:58 +02:00
2018-11-01 16:42:47 +01:00
stages {
stage ('Initialize libraries') {
2018-11-01 17:00:46 +01:00
stages {
stage ('Updating libraries') {
steps {
sh 'git reset --hard origin/master; git submodule update --init --remote --recursive --force'
sh 'git submodule update --merge'
sh './attach_modules.sh'
}
}
stage ('Building libraries') {
when {
expression { params.build_libraries }
}
steps {
sh 'cd libraries; ./build.sh'
}
}
2018-11-01 16:42:47 +01:00
}
}
stage ('Build TeaSpeak Debug') {
environment {
TEASPEAK_BUILD_TYPE="Debug"
}
stages {
stage ('build') {
steps {
sh './build_teaspeak.sh'
}
}
stage ('deploy') {
when {
expression { params.deploy_build }
}
steps {
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/x86'
}
}
}
}
2018-11-01 16:42:08 +01:00
}
}
2018-08-09 21:57:58 +02:00
2018-11-01 16:42:47 +01:00
stage ('Build amd64 Debug') {
agent {
label 'linux && amd64 && teaspeak'
2018-08-09 21:57:58 +02:00
}
2018-11-24 16:26:52 +01:00
when {
expression { params.target == "" || params.target == "all" || params.target == "x64_debug" }
}
2018-08-09 21:57:58 +02:00
stages {
2018-11-01 16:42:47 +01:00
stage ('Initialize libraries') {
2018-11-01 17:00:46 +01:00
stages {
stage ('Updating libraries') {
steps {
sh 'git reset --hard origin/master; git submodule update --init --remote --recursive --force'
sh 'git submodule update --merge'
sh './attach_modules.sh'
}
}
stage ('Building libraries') {
when {
expression { params.build_libraries }
}
steps {
sh 'cd libraries; ./build.sh'
}
}
2018-11-01 16:42:47 +01:00
}
}
stage ('Build') {
environment {
TEASPEAK_BUILD_TYPE="Debug"
}
2018-08-09 21:57:58 +02:00
steps {
2018-11-01 16:42:08 +01:00
sh './build_teaspeak.sh'
2018-08-09 21:57:58 +02:00
}
}
2018-11-01 16:42:47 +01:00
stage ('Deploy') {
2018-11-01 16:42:08 +01:00
when {
expression { params.deploy_build }
2018-11-01 16:16:06 +01:00
}
2018-11-01 16:42:47 +01:00
2018-11-01 16:42:08 +01:00
steps {
2018-11-01 16:42:47 +01:00
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/amd64'
2018-08-09 21:57:58 +02:00
}
}
}
}
2018-11-01 16:42:47 +01:00
stage ('Build amd64 Release') {
2018-11-01 16:42:08 +01:00
when {
2018-11-24 16:26:52 +01:00
expression { params.target == "all" || params.target == "x64_release" || params.build_optimized }
2018-08-09 21:57:58 +02:00
}
2018-11-01 16:42:47 +01:00
agent {
label 'linux && amd64 && teaspeak'
2018-11-01 16:42:08 +01:00
}
2018-08-09 21:57:58 +02:00
2018-11-01 16:42:47 +01:00
stages {
stage ('Initialize libraries') {
2018-11-01 17:00:46 +01:00
stages {
stage ('Updating libraries') {
steps {
sh 'git reset --hard origin/master; git submodule update --init --remote --recursive --force'
sh 'git submodule update --merge'
sh './attach_modules.sh'
}
}
stage ('Building libraries') {
when {
expression { params.build_libraries }
}
steps {
sh 'cd libraries; ./build.sh'
}
}
2018-11-01 16:42:47 +01:00
}
}
2018-08-09 21:57:58 +02:00
2018-11-01 16:42:47 +01:00
stage ('Build') {
environment {
TEASPEAK_BUILD_TYPE="Release"
}
2018-11-01 16:42:08 +01:00
2018-11-01 16:42:47 +01:00
steps {
sh './build_teaspeak.sh'
}
}
2018-11-01 16:42:08 +01:00
2018-11-01 16:42:47 +01:00
stage ('Deploy') {
when {
expression { params.deploy_build }
}
2018-11-01 16:42:08 +01:00
2018-11-01 16:42:47 +01:00
steps {
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/amd64_optimized'
}
}
2018-08-09 21:57:58 +02:00
}
}
2018-08-09 21:59:22 +02:00
}
2018-08-09 21:58:53 +02:00
}
}
2018-08-08 21:53:18 +02:00
}