For the complete documentation index, see llms.txt. This page is also available as Markdown.

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
            rake

Multiple

Pipelines can contain multiple stages. The overall build status is determined by the successful completion of all stages.

Stages do not share state. It is not possible for two stages to access the same underlying file system or generated files.

This pipeline has two stages named backend and frontend.

Last updated

Was this helpful?