summaryrefslogtreecommitdiff
path: root/pipeline.dot
diff options
context:
space:
mode:
authorLars Wirzenius <lwirzenius@wikimedia.org>2019-05-06 17:50:47 +0300
committerLars Wirzenius <lwirzenius@wikimedia.org>2019-05-06 17:50:47 +0300
commitd35d8bbed374e9d836f62737e56bda60ecb6b8e5 (patch)
tree026953f9fab1d63d0ff4fe4613259ac13ac6184e /pipeline.dot
parent1fb0a569da6cc199e5f34b1e23426d86a74489b2 (diff)
downloadwmf-ci-arch-d35d8bbed374e9d836f62737e56bda60ecb6b8e5.tar.gz
Change: add some figure, edit text
Diffstat (limited to 'pipeline.dot')
-rw-r--r--pipeline.dot18
1 files changed, 18 insertions, 0 deletions
diff --git a/pipeline.dot b/pipeline.dot
new file mode 100644
index 0000000..0c56148
--- /dev/null
+++ b/pipeline.dot
@@ -0,0 +1,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;
+}