0edf0d4aa1
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/clang.git#5bff53b37b839e11cb3d227fdb3e7ecbf45e701b
25 lines
613 B
YAML
25 lines
613 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
|
|
- clang
|
|
- clang-libs
|
|
roles:
|
|
- role: standard-test-basic
|
|
tags:
|
|
- classic
|
|
repositories:
|
|
- repo: "https://src.fedoraproject.org/tests/clang.git"
|
|
dest: "clang"
|
|
required_packages:
|
|
- clang
|
|
tests:
|
|
- clang/libomp
|