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

     1  kind: pipeline
     2  spec:
     3    stages:
     4    - name: build-medium
     5      spec:
     6        platform:
     7          arch: arm64
     8          os: linux
     9        runtime:
    10          spec: {}
    11          type: cloud
    12        steps:
    13        - spec:
    14            run: |-
    15              set -eo pipefail
    16              uname -a
    17            shell: bash
    18          type: script
    19        - spec:
    20            run: |-
    21              set -eo pipefail
    22              echo "Hello, Arm!"
    23            shell: bash
    24          type: script
    25      type: ci
    26    - name: build-large
    27      spec:
    28        platform:
    29          arch: arm64
    30          os: linux
    31        runtime:
    32          spec: {}
    33          type: cloud
    34        steps:
    35        - spec:
    36            run: |-
    37              set -eo pipefail
    38              uname -a
    39            shell: bash
    40          type: script
    41        - spec:
    42            run: |-
    43              set -eo pipefail
    44              echo "Hello, Arm!"
    45            shell: bash
    46          type: script
    47      type: ci
    48  version: 1