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
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
1 comment