From d4ae603789d849acb5547e18bbf645196a003a08 Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Thu, 9 Aug 2018 21:39:07 +0200 Subject: [PATCH] Updated jenkins file --- Jenkinsfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3f39075..064d18a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,9 +1,9 @@ pipeline { agent any - //stages { - // stage ('building') { - parallel { + stages { + stage ('building') { + stages { stage ('x86') { agent { label 'linux && x84 && teaspeak' @@ -84,12 +84,12 @@ 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' } } } } } - // } - //} + } + } }