From 9f13ac7c3c41a5ad4a2261656747a99cdd57b21d Mon Sep 17 00:00:00 2001 From: Manuele Simi Date: Sun, 1 Sep 2019 22:23:39 -0400 Subject: [PATCH] Dummy function. --- Jenkinsfile_withFunctions | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile_withFunctions b/Jenkinsfile_withFunctions index 1f07e7e..e570f06 100644 --- a/Jenkinsfile_withFunctions +++ b/Jenkinsfile_withFunctions @@ -95,18 +95,19 @@ pipeline { stage('Build SmartGears components') { steps { - buildComponents items: (components['SmartGears']).collect { "Stage ${it}" } + buildComponents items: ("a".."f").collect { "Stage ${it}" } } } stage('Build Enabling components') { steps { - buildComponents items: (components['Enabling']).collect { "Stage ${it}" } + buildComponents items: ("g".."p").collect { "Stage ${it}" } } } stage('Build Data components') { steps { - buildComponents items: (components['Data']).collect { "Stage ${it}" } + buildComponents items: ("q".."t").collect { "Stage ${it}" } + } } }