From 50942533f898050ad1a658286f713716fdec119d Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Wed, 21 Apr 2021 13:48:04 +0200 Subject: [PATCH] Fix ci_stage_1.groovy to take ROBOT_TAG_NAME as a string This change will read the param ROBOT_TAG_NAME and add it as a string param to be passed to downstream jobs, instead of a boolean param, as it was wrongly doing. Change-Id: I3b7042dc41cd9a270386c91fdbaa7987e23af655 Signed-off-by: garciadeblas --- jenkins/ci-pipelines/ci_stage_1.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/ci-pipelines/ci_stage_1.groovy b/jenkins/ci-pipelines/ci_stage_1.groovy index 306b9fd6..a4aca757 100644 --- a/jenkins/ci-pipelines/ci_stage_1.groovy +++ b/jenkins/ci-pipelines/ci_stage_1.groovy @@ -76,7 +76,7 @@ node("${params.NODE}") { } if ( params.ROBOT_TAG_NAME ) { - downstream_params.add(booleanParam(name: 'ROBOT_TAG_NAME', value: params.ROBOT_TAG_NAME)) + downstream_params.add(string(name: 'ROBOT_TAG_NAME', value: params.ROBOT_TAG_NAME)) } if ( params.STAGE ) -- 2.17.1