This commit is contained in:
WolverinDEV 2018-08-09 12:42:27 +02:00
parent c9f5605957
commit a616804c8b

16
Jenkinsfile vendored
View File

@ -3,6 +3,20 @@ pipeline {
label 'linux && debian && teaspeak' label 'linux && debian && teaspeak'
} }
environment {
/* General flags */
CXX_FLAGS = '-m32'
C_FLAGS = '-m32'
/* CMake specific flags */
CMAKE_OPTIONS = ''
CMAKE_MAKE_OPTIONS = ''
/* Make specific flags */
MAKE_OPTIONS = ''
}
stages { stages {
stage ('Initialize libraries') { stage ('Initialize libraries') {
steps { steps {
@ -21,7 +35,7 @@ pipeline {
} }
stage ('Deploy') { stage ('Deploy') {
steps { steps {
sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/amd64' sh 'cd TeaSpeak/server/repro/; chmod 400 build_private_key; ./build.sh linux/x84'
} }
} }
} }