Skip to content

Commit

Permalink
Remove graphviz dependency (#5542)
Browse files Browse the repository at this point in the history
  • Loading branch information
achamayou authored Aug 14, 2023
1 parent c3c0dc2 commit d7edc91
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -2399,7 +2399,7 @@ HIDE_UNDOC_RELATIONS = YES
# set to NO
# The default value is: NO.

HAVE_DOT = YES
HAVE_DOT = NO

# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed
# to run in parallel. When set to 0 doxygen will base this on the number of
Expand Down
3 changes: 3 additions & 0 deletions getting_started/setup_vm/app-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,6 @@
- import_role:
name: protoc
tasks_from: install.yml
- import_role:
name: autoremove
tasks_from: install.yml
3 changes: 3 additions & 0 deletions getting_started/setup_vm/app-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@
- import_role:
name: ccf_install
tasks_from: deb_install.yml
- import_role:
name: autoremove
tasks_from: install.yml
3 changes: 3 additions & 0 deletions getting_started/setup_vm/ccf-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,6 @@
- import_role:
name: lldb
tasks_from: install.yml
- import_role:
name: autoremove
tasks_from: install.yml
5 changes: 5 additions & 0 deletions getting_started/setup_vm/roles/autoremove/install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- name: Remove any uncessary packages
apt:
name: "autoremove"
autoremove: yes
become: yes
6 changes: 6 additions & 0 deletions getting_started/setup_vm/roles/ccf_build/tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@
state: absent
become: yes

- name: Remove graphviz debian package
apt:
name: graphviz
state: absent
become: yes

- name: Download doxygen
get_url:
url: "{{ doxygen_url }}"
Expand Down

0 comments on commit d7edc91

Please sign in to comment.