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

     1  kind: pipeline
     2  spec:
     3    stages:
     4    - name: Hello-World
     5      spec:
     6        platform:
     7          arch: amd64
     8          os: linux
     9        runtime:
    10          spec: {}
    11          type: cloud
    12        steps:
    13        - name: Saying Hello
    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      type: ci
    23    - name: Fetch-Code
    24      spec:
    25        platform:
    26          arch: amd64
    27          os: linux
    28        runtime:
    29          spec: {}
    30          type: cloud
    31        steps:
    32        - name: Getting the Code
    33          spec:
    34            image: cimg/base:2021.04
    35            run: |
    36              set -eo pipefail
    37              ls -al
    38              echo '^^^Your repo files^^^'
    39            shell: bash
    40          type: script
    41      type: ci
    42    - name: Using-Node
    43      spec:
    44        platform:
    45          arch: amd64
    46          os: linux
    47        runtime:
    48          spec: {}
    49          type: cloud
    50        steps:
    51        - name: Running the Node Container
    52          spec:
    53            image: cimg/node:17.2
    54            run: |
    55              set -eo pipefail
    56              node -v
    57            shell: bash
    58          type: script
    59      type: ci
    60  version: 1