Fast Fail the entire pipeline

Of a series of steps that are running in parallel, I 'd like the entire build to stop and fail if any of them fails first. This way I don’t have to wait for other lengthier tests to all finish.

I know right now the build is marked as failed but I don’t want that. I want the build to actually stop
Is there a feature for that?
thanks

1 Like

it looks like the best thing i can do is to add this to my lengthy steps:
cancel_on_build_failing

2 Likes

Hey @js-cb
Thanks for reaching out! You can use cancel_on_build_failing: true this will cancel all the jobs that are running in parallel

Cheers!

2 Likes

Thank you @stephanieat !