Updated jenkins file

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

88
Jenkinsfile vendored
View File

@ -3,48 +3,8 @@ pipeline {
stages {
stage ('building') {
parallel linux_amd64: {
agent {
label 'linux && amd64 && 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 {
sh './build_teaspeak.sh'
}
}
stage ('Deploy') {
steps {
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/amd64'
}
}
}
}, linux_x86: {
parallel {
stage ('x86') {
agent {
label 'linux && x84 && teaspeak'
}
@ -86,6 +46,50 @@ pipeline {
}
}
}
stage ('amd64') {
agent {
label 'linux && amd64 && 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 {
sh './build_teaspeak.sh'
}
}
stage ('Deploy') {
steps {
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/amd64'
}
}
}
}
}
}
}
}