From abcc8d77dfbbc2bc3a76fe33772f5dd03eaf50ba Mon Sep 17 00:00:00 2001 From: Radoslaw Wicik Date: Mon, 31 May 2021 14:25:24 +0200 Subject: [PATCH] [EGD-6871] Single thread for build job on jenkins Test for faster queue in Jenkins. --- Jenkinsfile | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 125f45354..cae5f2ce7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -81,13 +81,8 @@ popd''' when { changeRequest() } - parallel { + stages{ stage('Build RT1051') { - agent { - node { - label 'jenkins-slave-ccache-ram' - } - } steps { sh '''#!/bin/bash -e PATH="/usr/local/cmake-3.19.5-Linux-x86_64/bin:/usr/local/gcc-arm-none-eabi-10-2020-q4-major/bin:$PATH" @@ -114,12 +109,6 @@ ccache --show-stats''' } stage('Build Linux') { - agent { - node { - label 'jenkins-slave-ccache-ram' - } - } - environment { PATH="/usr/local/cmake-3.19.5-Linux-x86_64/bin:/usr/local/gcc-arm-none-eabi-10-2020-q4-major/bin:$PATH" CCACHE_DIR="/ccache/Linux" @@ -166,7 +155,7 @@ popd popd''' } } - } + } } stage('master-jobs') { when {