Pipeline Stage Declaration
data class PipelineStageDeclaration(val actions: List<PipelineActionDeclaration>, val beforeEntry: PipelineBeforeEntryConditions? = null, val blockers: List<PipelineBlockerDeclaration>? = null, val name: String, val onFailure: PipelineFailureConditions? = null, val onSuccess: PipelineSuccessConditions? = null)
Represents information about a stage and its definition.
Constructors
Link copied to clipboard
constructor(actions: List<PipelineActionDeclaration>, beforeEntry: PipelineBeforeEntryConditions? = null, blockers: List<PipelineBlockerDeclaration>? = null, name: String, onFailure: PipelineFailureConditions? = null, onSuccess: PipelineSuccessConditions? = null)
Properties
Link copied to clipboard
The actions included in a stage.
Link copied to clipboard
The method to use before stage runs.
Link copied to clipboard
Reserved for future use.
Link copied to clipboard
The method to use when a stage has not completed successfully
Link copied to clipboard
The method to use when a stage has completed successfully