in src/com/epam/digital/data/platform/pipelines/stages/StageFactory.groovy [56:66]
void runStage(String stageName, BuildContext context, String runStageName = null) {
context.script.stage(runStageName ? runStageName : stageName) {
if (context.codebase) {
getStageClass(stageName.toLowerCase(),
context.codebase.buildToolSpec,
context.codebase.type).run()
} else {
getStageClass(stageName.toLowerCase()).run()
}
}
}