From 1e4268f293470b8d2dec339ce34ede37a10331be Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 20 May 2019 19:13:36 +0300 Subject: Change: show separate deployment stage for pipeline, drop artifacts --- pipeline.dot | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'pipeline.dot') 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; } -- cgit v1.2.1