This repository has been archived by the owner on Nov 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
graph.dot
65 lines (56 loc) · 2.88 KB
/
graph.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
digraph {
rankdir=LR;
splines=ortho;
subgraph cluster_stage0 {
label="stage 0";
splines=ortho;
graph[style=dotted]
debseedImport [color="gray45",shape="box",penwidth=3]
debootstrapSrc [color="green",shape="diamond",peripheries=3,fixedsize=shape]
debuerrotypeSrc [color="green",shape="diamond",peripheries=3,fixedsize=shape]
archiveDebOrg [color="red",shape="septagon",peripheries=3,fixedsize=shape]
step_debseed [color="blue",shape="cds",peripheries=3]
debseed [color="darkgreen",shape="box"]
step_debseedTest [color="blue",shape="cds",peripheries=3]
debseedTest_gate [color="pink",shape="diamond",fixedsize=shape,label=""]
debseedRelease [color="gray45",shape="box",penwidth=3]
{debseedImport, debootstrapSrc, archiveDebOrg, debuerrotypeSrc} -> step_debseed -> {debseed}
{debseed} -> step_debseedTest -> {debseedTest_gate}
{debseed, debseedTest_gate} -> {debseedRelease}
debseedRelease->debseedImport [stroke="dotted",constraint=false,color="gray50"]
step_debbuilder [color="blue",shape="cds",peripheries=3]
debbuilder [color="darkgreen",shape="box"]
step_debbuilderTest [color="blue",shape="cds",peripheries=3]
debbuilderTest_gate [color="pink",shape="diamond",fixedsize=shape,label=""]
debbuilderRelease [color="gray45",shape="box",penwidth=3]
{debseedImport, debootstrapSrc, archiveDebOrg, debuerrotypeSrc} -> step_debbuilder -> {debbuilder}
{debbuilder} -> step_debbuilderTest -> {debbuilderTest_gate}
{debbuilder, debbuilderTest_gate} -> {debbuilderRelease}
}
step_x11bundleCapture [color="blue",shape="cds",peripheries=3]
x11bundle [color="darkgreen",shape="box"]
{debseedImport} -> step_x11bundleCapture -> {x11bundle}
step_thunderbirdCapture [color="blue",shape="cds",peripheries=3]
thunderbird [color="darkgreen",shape="box"]
{x11bundle} -> step_thunderbirdCapture -> {thunderbird}
thunderbirdRelease [color="gray45",shape="box",penwidth=3]
{thunderbird} -> {thunderbirdRelease}
subgraph cluster_stageUser {
graph[style=dotted]
thunderbirdImport [color="gray45",shape="box",penwidth=3]
thunderbirdRelease->thunderbirdImport [stroke="dotted",constraint=false,color="gray50"]
twerk_thunderbird [color="blue",shape="cds",peripheries=3]
{thunderbirdImport} -> twerk_thunderbird
}
step_kolourpaintCapture [color="blue",shape="cds",peripheries=3]
kolourpaint [color="darkgreen",shape="box"]
{x11bundle} -> step_kolourpaintCapture -> {kolourpaint}
kolourpaintRelease [color="gray45",shape="box",penwidth=3]
{kolourpaint} -> {kolourpaintRelease}
subgraph cluster_stageUser {
kolourpaintImport [color="gray45",shape="box",penwidth=3]
kolourpaintRelease->kolourpaintImport [stroke="dotted",constraint=false,color="gray50"]
twerk_kolourpaint [color="blue",shape="cds",peripheries=3]
{kolourpaintImport} -> twerk_kolourpaint
}
}