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

Commit

Permalink
Fix cmake install
Browse files Browse the repository at this point in the history
  • Loading branch information
JGoutin committed Mar 27, 2020
1 parent 5b468c1 commit 8f3a0d1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,15 @@
- ansible_os_family == "RedHat"
- (accelize_drm_from_source | bool) or (accelize_drm_build | bool)

- name: Ensure scikit-build is installed
pip:
name: scikit-build
executable: pip3
extra_args: "{{ _pip_args }}"
retries: 10
delay: 1
when: (accelize_drm_from_source | bool) or (accelize_drm_build | bool)

- name: Ensure CMake is installed
pip:
name: cmake
Expand Down

0 comments on commit 8f3a0d1

Please sign in to comment.