From 85bc2b2e0d7916f8aaf7db1c0f0250e86ff46ccf Mon Sep 17 00:00:00 2001 From: jpl-jengelke Date: Thu, 21 Jul 2022 10:16:47 -0700 Subject: [PATCH] Issue #33: Update Actor/Automation graph to better reflect terminus and start points. ... Update to flowchart with suggested changes. --- .../reference-architectures/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/continuous-integration/reference-architectures/README.md b/continuous-integration/reference-architectures/README.md index 85ffb99b6..848b71341 100644 --- a/continuous-integration/reference-architectures/README.md +++ b/continuous-integration/reference-architectures/README.md @@ -158,14 +158,14 @@ A more robust view of CI architecture describes the participants, both users and The CI process always starts with developers who commit code, and it finishes with reliable, unchanging, versioned and packaged software delivered by an automated system. ```mermaid -graph TB +flowchart TB D1([fa:fa-desktop Dev 1]) -->|commit| R[fa:fa-server Version Control Server] D2([fa:fa-desktop Dev 2]) -->|commit| R Dn([fa:fa-desktop Dev n]) -->|commit| R R -->|trigger| C[fa:fa-server CI Server] C-->|validate| R C-->|report| RS([fa:fa-server Reporting Service]) - Q{Compile
Test} + Q{"Compile
& Test"} S((Success)) F([Notify]) style Q fill:#FFAC1C,stroke:#333,stroke-width:4px @@ -179,9 +179,9 @@ graph TB U2[fa:fa-user User 2] Un[fa:fa-users Users n] end - AR---U1 & U2 - AS-.-U2 - RS-.-Un + AR<-->U1 & U2 + AS<-.->U2 + RS<-.->Un style Community fill:#ECFFDC,stroke:#333,stroke-width:2px style U1 fill:#F6F5F3,stroke:#333,stroke-width:1px style U2 fill:#F6F5F3,stroke:#333,stroke-width:1px