github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/circle/testdata/tutorial/example2.yaml.golden (about)

     1  kind: pipeline
     2  spec:
     3    stages:
     4    - name: build
     5      spec:
     6        platform:
     7          arch: amd64
     8          os: linux
     9        runtime:
    10          spec: {}
    11          type: cloud
    12        steps:
    13        - name: The First Step
    14          spec:
    15            image: cimg/base:2021.04
    16            run: |
    17              set -eo pipefail
    18              echo 'Hello World!'
    19              echo 'This is the delivery pipeline'
    20            shell: bash
    21          type: script
    22        - name: The Second Step
    23          spec:
    24            image: cimg/base:2021.04
    25            run: |
    26              set -eo pipefail
    27              ls -al
    28              echo '^^^The files in your repo^^^'
    29            shell: bash
    30          type: script
    31      type: ci
    32  version: 1