summaryrefslogtreecommitdiff
path: root/pipeline.dot
diff options
context:
space:
mode:
authorLars Wirzenius <lwirzenius@wikimedia.org>2019-05-20 19:13:36 +0300
committerLars Wirzenius <lwirzenius@wikimedia.org>2019-05-20 19:13:36 +0300
commit1e4268f293470b8d2dec339ce34ede37a10331be (patch)
tree1ea49b3d691642260c7af9cffe947e5be0ad8d2b /pipeline.dot
parentc8fa7b686f9eabaa73ae2f1523e806db7105535d (diff)
downloadwmf-ci-arch-1e4268f293470b8d2dec339ce34ede37a10331be.tar.gz
Change: show separate deployment stage for pipeline, drop artifacts
Diffstat (limited to 'pipeline.dot')
-rw-r--r--pipeline.dot10
1 files changed, 4 insertions, 6 deletions
diff --git a/pipeline.dot b/pipeline.dot
index 0c56148..dd31fa0 100644
--- a/pipeline.dot
+++ b/pipeline.dot
@@ -2,17 +2,15 @@ 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"];
+ deployprod [shape="rect" label="Deploy to production"];
production [shape="folder" label="Production environment"];
developer -> commit;
- commit -> artifacts;
commit -> acceptance;
- acceptance -> testenv;
- artifacts -> testenv;
+ acceptance -> testenv [style=dotted];
- acceptance -> production;
- artifacts -> production;
+ acceptance -> deployprod;
+ deployprod -> production;
}