in src/com/epam/edp/Job.groovy [241:251]
def runStage(stageName, context, runStageName = null) {
script.stage(runStageName ? runStageName : stageName) {
if (context.codebase) {
context.factory.getStage(stageName.toLowerCase(),
context.codebase.config.build_tool.toLowerCase(),
context.codebase.config.type).run(context)
} else {
run(stageName, context, runStageName)
}
}
}