Server-Root/Jenkinsfile

186 lines
3.8 KiB
Plaintext
Raw Normal View History

2018-08-08 15:53:18 -04:00
pipeline {
2018-08-09 15:57:58 -04:00
agent any
2018-11-01 11:16:06 -04:00
parameters {
2018-11-01 12:11:47 -04:00
booleanParam(defaultValue: false, description: 'Enabled/disables the building of an optimized build', name: 'build_optimized')
2018-11-01 11:22:28 -04:00
booleanParam(defaultValue: true, description: 'Build the libraries as well', name: 'build_libraries')
2018-11-01 11:28:05 -04:00
booleanParam(defaultValue: true, description: 'Deploy this build', name: 'deploy_build')
2018-11-01 11:16:06 -04:00
}
2018-11-01 11:42:08 -04: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 15:57:58 -04:00
2018-11-01 11:42:47 -04:00
stages {
stage ('build') {
parallel {
stage ('Build x86') {
agent {
label 'linux && x84 && teaspeak'
2018-08-09 15:57:58 -04:00
}
2018-11-01 11:42:47 -04:00
stages {
stage ('Initialize libraries') {
2018-11-01 12:00:46 -04: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 11:42:47 -04: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 11:42:08 -04:00
}
}
2018-08-09 15:57:58 -04:00
2018-11-01 11:42:47 -04:00
stage ('Build amd64 Debug') {
agent {
label 'linux && amd64 && teaspeak'
2018-08-09 15:57:58 -04:00
}
stages {
2018-11-01 11:42:47 -04:00
stage ('Initialize libraries') {
2018-11-01 12:00:46 -04: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 11:42:47 -04:00
}
}
stage ('Build') {
environment {
TEASPEAK_BUILD_TYPE="Debug"
}
2018-08-09 15:57:58 -04:00
steps {
2018-11-01 11:42:08 -04:00
sh './build_teaspeak.sh'
2018-08-09 15:57:58 -04:00
}
}
2018-11-01 11:42:47 -04:00
stage ('Deploy') {
2018-11-01 11:42:08 -04:00
when {
expression { params.deploy_build }
2018-11-01 11:16:06 -04:00
}
2018-11-01 11:42:47 -04:00
2018-11-01 11:42:08 -04:00
steps {
2018-11-01 11:42:47 -04:00
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/amd64'
2018-08-09 15:57:58 -04:00
}
}
}
}
2018-11-01 11:42:47 -04:00
stage ('Build amd64 Release') {
2018-11-01 11:42:08 -04:00
when {
2018-11-01 11:42:47 -04:00
expression { params.build_optimized }
2018-08-09 15:57:58 -04:00
}
2018-11-01 11:42:47 -04:00
agent {
label 'linux && amd64 && teaspeak'
2018-11-01 11:42:08 -04:00
}
2018-08-09 15:57:58 -04:00
2018-11-01 11:42:47 -04:00
stages {
stage ('Initialize libraries') {
2018-11-01 12:00:46 -04: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 11:42:47 -04:00
}
}
2018-08-09 15:57:58 -04:00
2018-11-01 11:42:47 -04:00
stage ('Build') {
environment {
TEASPEAK_BUILD_TYPE="Release"
}
2018-11-01 11:42:08 -04:00
2018-11-01 11:42:47 -04:00
steps {
sh './build_teaspeak.sh'
}
}
2018-11-01 11:42:08 -04:00
2018-11-01 11:42:47 -04:00
stage ('Deploy') {
when {
expression { params.deploy_build }
}
2018-11-01 11:42:08 -04:00
2018-11-01 11:42:47 -04:00
steps {
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/amd64_optimized'
}
}
2018-08-09 15:57:58 -04:00
}
}
2018-08-09 15:59:22 -04:00
}
2018-08-09 15:58:53 -04:00
}
}
2018-08-08 15:53:18 -04:00
}