Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 662 Bytes

File metadata and controls

22 lines (16 loc) · 662 Bytes

GL_HasJob

Edge Schema

General Information

The non-traversable GL_HasJob edge connects a pipeline to each of its component jobs. A pipeline typically contains multiple jobs across one or more stages. This is a structural containment edge created during pipeline/job enumeration.

graph LR
    pipe("fa:fa-angles-right GL_Pipeline #42")
    build("fa:fa-gear GL_Job build")
    test("fa:fa-gear GL_Job test")
    deploy("fa:fa-gear GL_Job deploy")

    pipe -.->|GL_HasJob| build
    pipe -.->|GL_HasJob| test
    pipe -.->|GL_HasJob| deploy
Loading