2020-03-20 18:43:23 +00:00
|
|
|
- hosts: localhost
|
|
|
|
pre_tasks:
|
|
|
|
# We want to make sure libomp is not already present on the system to ensure
|
|
|
|
# that clang pulls in the correct libomp dependencies when it is installed.
|
|
|
|
- name: Uninstall libomp
|
|
|
|
package:
|
|
|
|
name: "{{ item }}"
|
|
|
|
state: absent
|
|
|
|
with_items:
|
|
|
|
- libomp
|
|
|
|
- libomp-devel
|
2020-10-29 03:54:42 +00:00
|
|
|
- clang
|
|
|
|
- clang-libs
|
2020-03-20 18:43:23 +00:00
|
|
|
roles:
|
|
|
|
- role: standard-test-basic
|
|
|
|
tags:
|
|
|
|
- classic
|
|
|
|
required_packages:
|
|
|
|
- clang
|
|
|
|
tests:
|
2021-04-14 02:01:54 +00:00
|
|
|
- libomp
|