github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/testdata/parallel/example2.yaml (about) 1 pipelines: 2 default: 3 - step: # sequential step 4 name: Build 5 script: 6 - ./build.sh 7 - step: # sequential step 8 name: Build 9 script: 10 - ./build.sh 11 - parallel: # these 2 steps will run in parallel 12 steps: 13 - step: 14 name: Integration 1 15 script: 16 - ./integration-tests.sh --batch 1 17 - step: 18 name: Integration 2 19 script: 20 - ./integration-tests.sh --batch 2 21 - step: # non-parallel step 22 script: 23 - ./deploy.sh