Hi everyone,
Support for fast failing parallel builds has been a long awaiting feature. We are happy to announce that this feature is now available.
Here is an example of a pipeline configuration:
pipelines:
default:
- step:
name: Build
script:
- ./build.sh
- parallel:
# configure parallel steps
# to stop all running steps on failure
fail-fast: true
steps:
- step:
name: Integration 1
script:
- ./integration-tests.sh --batch 1
- step:
name: Integration 2
script:
- ./integration-tests.sh --batch 2
- step:
script:
- ./deploy.sh
Please read more details in the blog post.
Nadia Begicheva
1 comment