summaryrefslogtreecommitdiff
path: root/pipeline.dot
blob: 0c56148dbeb5d1f4b3f68c5c8cbb6d958efa0e39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
digraph pipeline {
        developer [shape="circle" label="developer"];
        commit [shape="rect" label="Commit stage"];
        acceptance [shape="rect" label="Acceptance stage"];
        artifacts [shape="cylinder" label="Artifact store"];
        testenv [shape="folder" label="A test environment"];
        production [shape="folder" label="Production environment"];

        developer -> commit;
        commit -> artifacts;
        
        commit -> acceptance;
        acceptance -> testenv;
        artifacts -> testenv;

        acceptance -> production;
        artifacts -> production;
}