File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -65,9 +65,8 @@ Map call(Map config = [:]) {
6565
6666 Map stage_info = parseStageInfo(config)
6767
68- String image_version = config. get(
69- ' image_version' ,
70- (stage_info[' ci_target' ] =~ / ([a-z]+)(.*)/ )[0 ][1 ] + stage_info[' distro_version' ])
68+ String image_version = config. get(' image_version' ) ?:
69+ (stage_info[' ci_target' ] =~ / ([a-z]+)(.*)/ )[0 ][1 ] + stage_info[' distro_version' ]
7170
7271 // Install any additional rpms required for this stage
7372 String stage_inst_rpms = config. get(' inst_rpms' , ' ' )
@@ -84,6 +83,7 @@ Map call(Map config = [:]) {
8483 subject : ' CI Test failure - CI Configuration test issue.' )
8584 }
8685
86+ echo " Running provisionNodes() on ${ nodelist} with the ${ image_version} image"
8787 Map runData = provisionNodes(
8888 NODELIST : nodelist,
8989 node_count : stage_info[' node_count' ],
You can’t perform that action at this time.
0 commit comments