Interface PipelineStepGeneratorPostprocessor
-
- All Known Implementing Classes:
DockerBuildStepPipelineStepGeneratorPostprocessor
public interface PipelineStepGeneratorPostprocessor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<PipelineDescription.Job.Step>
postProcessBeforeInitialization(PipelineDescription.Job job, PipelineDescription.Job.Step step)
Patches the build steps by replacing each step with list of generated steps.
-
-
-
Method Detail
-
postProcessBeforeInitialization
List<PipelineDescription.Job.Step> postProcessBeforeInitialization(PipelineDescription.Job job, PipelineDescription.Job.Step step)
Patches the build steps by replacing each step with list of generated steps.- Parameters:
job
- the original job.step
- the step to be patched or replaced.- Returns:
- The list of the steps, which should replace current step. If return empty list, then the step will be completely dropped.
-
-