summaryrefslogtreecommitdiff
path: root/pipeline.dot
diff options
context:
space:
mode:
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;
+}