leaf_pipeline_item.dot 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. digraph PipelineItem {
  2. Name -> Registration
  3. Provides -> Registration
  4. Registration -> Resolution
  5. Requires -> Resolution
  6. Resolution -> Configure
  7. Flag -> "Command Line"
  8. ListConfigurationOptions -> "Command Line"
  9. "Command Line" -> Configure
  10. Configure -> Initialize
  11. Repository -> Initialize
  12. Initialize -> Consume
  13. Commits -> Consume
  14. Consume -> Consume
  15. Consume -> Fork
  16. Fork -> Consume
  17. Consume -> Merge
  18. Merge -> Consume
  19. Merge -> "<disposal>"
  20. Merge -> Finalize
  21. Consume -> Finalize
  22. Finalize -> Result
  23. Result -> Serialize
  24. Serialize -> YAML
  25. Serialize -> "Protocol Buffers"
  26. Registration [style=filled, fillcolor=dimgray, fontcolor=white]
  27. Resolution [style=filled, fillcolor=dimgray, fontcolor=white]
  28. "Command Line" [style=filled, fillcolor=dimgray, fontcolor=white]
  29. Repository [style=filled, fillcolor=gray]
  30. Commits [style=filled, fillcolor=gray]
  31. Result [style=filled, fillcolor=gray]
  32. YAML [style=filled, fillcolor=gray]
  33. "Protocol Buffers" [style=filled, fillcolor=gray]
  34. }