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

     1  pipelines:
     2    default:
     3      - step:
     4          name: Build
     5          script:
     6            - ./build.sh
     7      - parallel:
     8          # these option alows to force stop all running steps if any step fails
     9          fail-fast: true
    10          steps:
    11            - step:
    12                name: Integration 1
    13                script:
    14                  - ./integration-tests.sh --batch 1
    15            - step:
    16                name: Integration 2
    17                script:
    18                  - ./integration-tests.sh --batch 2
    19            - step:
    20                # option can be disabled for a step
    21                # and its failure won't stop other steps in a group
    22                fail-fast: false
    23                name: Upload metadata
    24                script:
    25                  - ./upload-metadata.sh