From 9523125b6f9d990e07cf4898fdfa1ba6e2ba4809 Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Thu, 9 Aug 2018 21:35:28 +0200 Subject: [PATCH] Updated jenkins file --- Jenkinsfile | 148 +++++++++++++++++++++++++++------------------------- 1 file changed, 76 insertions(+), 72 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b2e78bf..ca0180c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,85 +3,89 @@ 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' - - } + parallel { + stage ('x86') { + agent { + label 'linux && x84 && teaspeak' } - stage ('Build TeaSpeak') { - steps { - sh './build_teaspeak.sh' - } + + environment { + /* 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 { - /* 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 ('amd64') { + agent { + label 'linux && amd64 && teaspeak' } - stage ('Build TeaSpeak') { - steps { - sh './build_teaspeak.sh' - } + + environment { + /* 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' + } } } }