-
Notifications
You must be signed in to change notification settings - Fork 1
Jill tasks
Julien Capellari edited this page Mar 5, 2022
·
1 revision
Tasks starts with the "ready" state, then follow this state diagram:
stateDiagram-v2
blocked --> ready: every deps is done
blocked --> failed: some deps failed
ready --> blocked: waiting some deps
ready --> running: start task
running --> failed: task failed (exit != 0)
running --> done: task successful (exit = 0)