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

     1  pipeline:
     2    identifier: default
     3    name: default
     4    orgIdentifier: default
     5    projectIdentifier: default
     6    properties:
     7      ci:
     8        codebase:
     9          build: <+input>
    10    stages:
    11    - stage:
    12        identifier: test
    13        name: test
    14        spec:
    15          cloneCodebase: true
    16          execution:
    17            steps:
    18            - parallel:
    19              - step:
    20                  identifier: test1
    21                  name: test1
    22                  spec:
    23                    command: |-
    24                      echo "Do a test here"
    25                      echo "For example run a test suite"
    26                    image: busybox:latest
    27                  timeout: ""
    28                  type: Run
    29              - step:
    30                  identifier: test2
    31                  name: test2
    32                  spec:
    33                    command: |-
    34                      echo "Do another parallel test here"
    35                      echo "For example run a lint test"
    36                    image: busybox:latest
    37                  timeout: ""
    38                  type: Run
    39          platform:
    40            arch: Amd64
    41            os: Linux
    42          runtime:
    43            spec: {}
    44            type: Cloud
    45        type: CI