Skip to content
Snippets Groups Projects
Commit 6feedfca authored by s2870355's avatar s2870355
Browse files

changed gitlab-ci to generate dot file

parent eb825134
No related branches found
No related tags found
No related merge requests found
Pipeline #76701 canceled
......@@ -18,4 +18,25 @@ run-config:
include:
- artifact: gitlab-ci-generated.yml
job: generate-config
strategy: depend
\ No newline at end of file
strategy: depend
generate-dot:
stage: diagram
image: python
script:
- python parse-ci/parse-ci.py --static-dot | tree graph.dot
artifacts:
paths:
- graph.dot
visualize-dot:
stage: diagram
image: graphviz/graphviz
needs:
- job: generate-dot
artifacts: true
script:
- dot -Tsvg graph.dot
artifacts:
paths:
- graph.svg
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment