13c66032d5
It's not necessary to store the tests in a separate repository, since other packages can just reference the tests in this repo. Also update, the other tests to pull from git repos in the rpms namespace.
22 lines
509 B
YAML
22 lines
509 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
|
|
required_packages:
|
|
- clang
|
|
tests:
|
|
- libomp
|