From d35d8bbed374e9d836f62737e56bda60ecb6b8e5 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 6 May 2019 17:50:47 +0300 Subject: Change: add some figure, edit text --- pipeline.dot | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 pipeline.dot (limited to 'pipeline.dot') 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; +} -- cgit v1.2.1