Stage

data class Stage(val name: String)(source)

A stage in a pipeline.

A stage is a group of jobs that run together. Use the stage factory to easily create a stage in a pipeline:

val pipeline = gitlabCi {
val build by stage()

val start by job {
stage = build
script { … }
}
}

Read more in the GitLab documentation.

Constructors

Link copied to clipboard
constructor(name: String)

Properties

Link copied to clipboard