Skip to content
This repository has been archived by the owner on Feb 28, 2023. It is now read-only.

Commit

Permalink
Install exuberant-ctags dependency with ABI dumper on Ubuntu only.
Browse files Browse the repository at this point in the history
  • Loading branch information
xlz-jbleclere committed Apr 15, 2020
1 parent 0572ade commit 610a1a9
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,21 @@
- abi-compliance-checker
retries: 10
delay: 1
when: accelize_drm_abi_check | bool
when:
- ansible_os_family == "RedHat"
- accelize_drm_abi_check | bool

- name: Ensure ABI check dependencies are installed
package:
name:
- exuberant-ctags
- abi-dumper
- abi-compliance-checker
retries: 10
delay: 1
when:
- ansible_os_family == "Debian"
- accelize_drm_abi_check | bool

- name: Create Accelize DRM temporary Git clone directory
tempfile:
Expand Down

0 comments on commit 610a1a9

Please sign in to comment.