-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#674] Create mermaid diagrams for 3 main TCR variants (original, btc…
…r and relaxed)
- Loading branch information
1 parent
c1aac0a
commit 750750a
Showing
3 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
graph LR | ||
START((start)) | ||
BUILD{build} | ||
TEST{test} | ||
COMMIT["✅ commit (src + tests)"] | ||
REVERT["❌ revert (src + tests)"] | ||
END((end)) | ||
START --> BUILD | ||
BUILD -->|pass| TEST | ||
BUILD -->|fail| END | ||
TEST -->|pass| COMMIT | ||
TEST -->|fail| REVERT | ||
COMMIT --> END | ||
REVERT --> END | ||
classDef boundaryclass fill: #555555 | ||
classDef buildclass fill: #0077CC | ||
classDef testclass fill: #0077CC | ||
classDef okclass fill: #006600 | ||
classDef failclass fill: #660000 | ||
class START boundaryclass | ||
class BUILD buildclass | ||
class TEST testclass | ||
class COMMIT okclass | ||
class REVERT failclass | ||
class END boundaryclass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
graph LR | ||
START((start)) | ||
TEST{test} | ||
COMMIT["✅ commit src + tests)"] | ||
REVERT["❌ revert (src + tests)"] | ||
END((end)) | ||
START --> TEST | ||
TEST -->|"pass"| COMMIT | ||
TEST -->|"fail"| REVERT | ||
COMMIT --> END | ||
REVERT --> END | ||
classDef boundaryclass fill: #555555 | ||
classDef testclass fill: #0077CC | ||
classDef okclass fill: #006600 | ||
classDef failclass fill: #660000 | ||
class START boundaryclass | ||
class TEST testclass | ||
class COMMIT okclass | ||
class REVERT failclass | ||
class END boundaryclass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
graph LR | ||
START((start)) | ||
BUILD{build} | ||
TEST{test} | ||
COMMIT["✅ commit (src + tests)"] | ||
REVERT["❌ revert (src)"] | ||
END((end)) | ||
START --> BUILD | ||
BUILD -->|pass| TEST | ||
BUILD -->|fail| END | ||
TEST -->|pass| COMMIT | ||
TEST -->|fail| REVERT | ||
COMMIT --> END | ||
REVERT --> END | ||
classDef boundaryclass fill: #555555 | ||
classDef buildclass fill: #0077CC | ||
classDef testclass fill: #0077CC | ||
classDef okclass fill: #006600 | ||
classDef failclass fill: #660000 | ||
class START boundaryclass | ||
class BUILD buildclass | ||
class TEST testclass | ||
class COMMIT okclass | ||
class REVERT failclass | ||
class END boundaryclass |