runnables property

List<Runnable>? runnables
getter/setter pair

The sequence of one or more runnables (executable scripts, executable containers, and/or barriers) for each task in this task group to run.

Each task runs this list of runnables in order. For a task to succeed, all of its script and container runnables each must meet at least one of the following conditions: + The runnable exited with a zero status. + The runnable didn't finish, but you enabled its background subfield. + The runnable exited with a non-zero status, but you enabled its ignore_exit_status subfield.

Required.

Implementation

core.List<Runnable>? runnables;