Updated jenkins file

This commit is contained in:
WolverinDEV 2018-08-09 21:35:28 +02:00
parent a653f22fdb
commit 9523125b6f

146
Jenkinsfile vendored
View File

@ -3,85 +3,89 @@ pipeline {
stages { stages {
stage ('building') { stage ('building') {
parallel linux_amd64: { parallel {
agent { stage ('x86') {
label 'linux && amd64 && teaspeak' agent {
} label 'linux && x84 && teaspeak'
environment {
/* General flags */
CXX_FLAGS = ''
C_FLAGS = ''
/* CMake specific flags */
CMAKE_OPTIONS = ''
CMAKE_MAKE_OPTIONS = ''
/* Make specific flags */
MAKE_OPTIONS = ''
}
stages {
stage ('Initialize libraries') {
steps {
sh 'apt-get update'
sh 'git submodule update --init --remote --recursive'
sh 'git submodule update --merge'
sh './attach_modules.sh'
sh 'cd libraries; ./build.sh'
}
} }
stage ('Build TeaSpeak') {
steps { environment {
sh './build_teaspeak.sh' /* General flags */
} CXX_FLAGS = ''
C_FLAGS = ''
/* CMake specific flags */
CMAKE_OPTIONS = ''
CMAKE_MAKE_OPTIONS = ''
/* Make specific flags */
MAKE_OPTIONS = ''
} }
stage ('Deploy') {
steps {
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/amd64' stages {
stage ('Initialize libraries') {
steps {
sh 'apt-get update'
sh 'git submodule update --init --remote --recursive'
sh 'git submodule update --merge'
sh './attach_modules.sh'
sh 'cd libraries; ./build.sh'
}
}
stage ('Build TeaSpeak') {
steps {
sh './build_teaspeak.sh'
}
}
stage ('Deploy') {
steps {
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/x84'
}
} }
} }
} }
}, linux_x86: {
agent {
label 'linux && x84 && teaspeak'
}
environment { stage ('amd64') {
/* General flags */ agent {
CXX_FLAGS = '' label 'linux && amd64 && teaspeak'
C_FLAGS = ''
/* CMake specific flags */
CMAKE_OPTIONS = ''
CMAKE_MAKE_OPTIONS = ''
/* Make specific flags */
MAKE_OPTIONS = ''
}
stages {
stage ('Initialize libraries') {
steps {
sh 'apt-get update'
sh 'git submodule update --init --remote --recursive'
sh 'git submodule update --merge'
sh './attach_modules.sh'
sh 'cd libraries; ./build.sh'
}
} }
stage ('Build TeaSpeak') {
steps { environment {
sh './build_teaspeak.sh' /* General flags */
} CXX_FLAGS = ''
C_FLAGS = ''
/* CMake specific flags */
CMAKE_OPTIONS = ''
CMAKE_MAKE_OPTIONS = ''
/* Make specific flags */
MAKE_OPTIONS = ''
} }
stage ('Deploy') {
steps {
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/x84' stages {
stage ('Initialize libraries') {
steps {
sh 'apt-get update'
sh 'git submodule update --init --remote --recursive'
sh 'git submodule update --merge'
sh './attach_modules.sh'
sh 'cd libraries; ./build.sh'
}
}
stage ('Build TeaSpeak') {
steps {
sh './build_teaspeak.sh'
}
}
stage ('Deploy') {
steps {
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/amd64'
}
} }
} }
} }