private JobflowModel compileJobflow(
StageGraph stageGraph,
List<StageModel> model) throws IOException {
assert stageGraph != null;
assert model != null;
JobflowCompiler compiler = new JobflowCompiler(environment);
return compiler.compile(stageGraph, model);
}