Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gitlab-deps
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pipelines
tools
gitlab-deps
Commits
fa925502
Commit
fa925502
authored
1 year ago
by
ale
Browse files
Options
Downloads
Patches
Plain Diff
AWK script to generate Graphviz visualizations of the dependencies
parent
5be26a7e
Loading
Loading
No related merge requests found
Pipeline
#59294
passed
1 year ago
Stage: build
Stage: release
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
contrib/deps-to-dot.awk
+15
-0
15 additions, 0 deletions
contrib/deps-to-dot.awk
tox.ini
+0
-9
0 additions, 9 deletions
tox.ini
with
15 additions
and
9 deletions
contrib/deps-to-dot.awk
0 → 100755
+
15
−
0
View file @
fa925502
#!/usr/bin/awk -f
BEGIN
{
print
"digraph deps {"
print
"rankdir=\"LR\";"
}
{
print
"\""
$1
"\" -> \""
$2
"\""
}
END
{
print
"}"
}
This diff is collapsed.
Click to expand it.
tox.ini
deleted
100644 → 0
+
0
−
9
View file @
5be26a7e
[tox]
envlist
=
py3
[testenv]
deps
=
nose
commands
=
nosetests
-vv
[]
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment