Wanted to know if there is any flag/option for concourse tasks inside a single job so that all tasks gets executed regardless of any task failing.
Thanks!
Wanted to know if there is any flag/option for concourse tasks inside a single job so that all tasks gets executed regardless of any task failing.
Thanks!
Copyright © 2021 Jogjafile Inc.
Totally. By default, tasks run sequentially. If you want them to run independently of the sequence place them in the
in_parallel
key, like in the following pipeline:Running it will produce the following output:
in_parallel
works with tasks as well as resources (e.g. runningget
in parallel)