Stages
A stage contains one or more steps.
Single
This pipeline has one stage named test.
kind: pipeline
spec:
stages:
- name: test
type: ci
spec:
steps:
- name: rake
type: run
spec:
container: ruby
script: |-
bundle install --jobs=3 --retry=3
rakeMultiple
Pipelines can contain multiple stages. The overall build status is determined by the successful completion of all stages.
This pipeline has two stages named backend and frontend.
Last updated
Was this helpful?