github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/harness/downgrader/testdata/example-13.yaml (about)

     1  kind: pipeline
     2  spec:
     3    stages:
     4      - name: test
     5        spec:
     6          platform:
     7            arch: amd64
     8            os: linux
     9          runtime:
    10            spec: {}
    11            type: cloud
    12          steps:
    13            - name: test
    14              spec:
    15                image: cimg/base:2023.03
    16                run: echo "this is the test job"
    17              type: script
    18        type: ci
    19  version: 1
    20  
    21  ---
    22  kind: pipeline
    23  spec:
    24    stages:
    25      - name: build
    26        spec:
    27          platform:
    28            arch: amd64
    29            os: linux
    30          runtime:
    31            spec: {}
    32            type: cloud
    33          steps:
    34            - name: build
    35              spec:
    36                image: cimg/base:2023.03
    37                run: echo "this is the build job"
    38              type: script
    39        type: ci
    40  version: 1