summaryrefslogtreecommitdiff
path: root/pipeline.dot
blob: d0a9de67c277c419e44e800fefa60c7c7613c019 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
digraph pipeline {
        developer [shape="circle" label="developer"];
        commit [shape="ellipse" label="Commit stage"];
        acceptance [shape="ellipse" label="Acceptance stage"];
        testenv [shape="octagon" label="A test environment"];
        deployprod [shape="ellipse" label="Deploy to production"];
        production [shape="doubleoctagon" label="Production environment"];

        developer -> commit;
        
        commit -> acceptance;
        acceptance -> testenv [style=dotted];

        acceptance -> deployprod;
        deployprod -> production;
}