0db344e517
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/clang#b4a94df45bf3126c8c50a71329b6704aa70bd697
23 lines
576 B
YAML
23 lines
576 B
YAML
- 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
|
|
roles:
|
|
- role: standard-test-basic
|
|
tags:
|
|
- classic
|
|
repositories:
|
|
- repo: "https://src.fedoraproject.org/tests/clang.git"
|
|
dest: "clang"
|
|
required_packages:
|
|
- clang
|
|
tests:
|
|
- clang/libomp
|