From 5d3625cdde0962587de09a8b3d9790f81115ff59 Mon Sep 17 00:00:00 2001 From: Manuele Simi Date: Sat, 31 Aug 2019 23:51:46 -0400 Subject: [PATCH] Remove stage block around the build command. --- Jenkinsfile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 355d076..5d6dacc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -96,9 +96,8 @@ pipeline { steps { script { for(int job=0; i < components['SmartGears'].size(); job++) { - stage(components['SmartGears'][job]){ build "${components['SmartGears'][$job]}" - } + } } } @@ -107,9 +106,8 @@ pipeline { steps { script { for(int job=0; i < components['Enabling'].size(); job++) { - stage(components['Enabling'][job]){ build "${components['Enabling'][$job]}" - } + } } } @@ -118,9 +116,8 @@ pipeline { steps { script { for(int job=0; i < components['Data'].size(); job++) { - stage(components['Data'][job]){ build "${components['Data'][$job]}" - } + } } }