-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document the new vision of the pulp CI
- Loading branch information
Showing
3 changed files
with
73 additions
and
1 deletion.
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
__pycache__ | ||
ci-structure.pdf |
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,71 @@ | ||
// dot -Tpdf -o ci-structure.pdf ci-structure.dot | ||
|
||
digraph "Pulp CI" { | ||
{ | ||
rank=source | ||
|
||
git [shape=parallelogram] | ||
base [label="OCI-Base"] | ||
} | ||
|
||
subgraph cluster_jobs { | ||
label="CI Jobs" | ||
|
||
lint [shape=box] | ||
prerelease [shape=box label="prerelease checks"] | ||
build [shape=box, label="build wheel"] | ||
build2 [shape=box label="build docs & bindings"] | ||
tests [shape=box3d] | ||
{ | ||
rank=same | ||
|
||
deprecations [shape=box] | ||
publish [shape=box] | ||
} | ||
} | ||
|
||
{ | ||
rank=sink | ||
|
||
PyPi [shape=parallelogram] | ||
rubygems [shape=parallelogram] | ||
ppo [shape=parallelogram label="pulpproject.org"] | ||
} | ||
|
||
subgraph cluster_built { | ||
label="Build Artifacts" | ||
|
||
wheel -> apidoc -> { | ||
bindings | ||
docs | ||
} | ||
} | ||
|
||
git -> lint [label="PR"] | ||
git -> build [label="nightly"] | ||
git -> prerelease [label="tag"] | ||
{lint prerelease} -> build -> build2 | ||
build2 -> tests [label="PR"] | ||
build2 -> publish [label="Release"] | ||
tests -> deprecations | ||
|
||
{ | ||
edge [style=dotted] | ||
|
||
publish -> PyPi | ||
publish -> rubygems | ||
publish -> ppo | ||
} | ||
|
||
{ | ||
edge [style=dashed] | ||
|
||
base -> {build2 tests} | ||
|
||
build -> wheel | ||
build2 -> {apidoc bindings docs} | ||
wheel -> {tests build2 publish} | ||
bindings -> {tests publish} | ||
docs -> publish | ||
} | ||
} |
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