diff --git a/Jenkinsfile b/Jenkinsfile index 229cbed..88d9b1e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,6 +3,20 @@ pipeline { 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 { stage ('Initialize libraries') { steps { @@ -21,7 +35,7 @@ pipeline { } stage ('Deploy') { 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' } } }