summaryrefslogtreecommitdiff
path: root/pipeline.dot
blob: dd31fa0259c41d61b51f9ef02e822be488ed9e9c (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="rect" label="Commit stage"];
        acceptance [shape="rect" label="Acceptance stage"];
        testenv [shape="folder" label="A test environment"];
        deployprod [shape="rect" label="Deploy to production"];
        production [shape="folder" label="Production environment"];

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

        acceptance -> deployprod;
        deployprod -> production;
}