In Jenkins pipeline parallel stages, how to promptly kill other stages if one fail?
问题 If the job failed, I don't have to wait everybody to finish. Is it possible to abort the parallel stages that are still running. They must display as "aborted", not with a red cross icon, since the failed one must be highlighted. 回答1: Add parallelsAlwaysFailFast to your options and the whole pipelilne will stop if any (parallelized) stage fails. Quoting the source: parallelsAlwaysFailFast Set failfast true for all subsequent parallel stages in the pipeline. For example: options {