Stage
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 { … }
}
}
Content copied to clipboard
Read more in the GitLab documentation.