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

     1  kind: pipeline
     2  spec:
     3    stages:
     4    - name: build
     5      spec:
     6        steps:
     7        - name: run
     8          spec:
     9            run: ./build.sh
    10          type: script
    11        - name: parallel
    12          spec:
    13            steps:
    14            - name: run1
    15              spec:
    16                run: ./integration-tests.sh --batch 1
    17              type: script
    18            - name: run2
    19              spec:
    20                run: ./integration-tests.sh --batch 2
    21              type: script
    22          type: parallel
    23        - name: run3
    24          spec:
    25            run: ./deploy.sh
    26          type: script
    27      type: ci
    28  version: 1