fcf37586a6
Per https://pagure.io/fedora-ci/general/issue/404 , as things are right now, having CI files with the same names as those in other repos can cause clashes. Let's rename all of ours to avoid this. Also drop a path element in validate-comps.yaml that broke the tests... Signed-off-by: Adam Williamson <awilliam@redhat.com>
12 lines
302 B
YAML
12 lines
302 B
YAML
- hosts: all
|
|
tasks:
|
|
- name: Install needed packages
|
|
package:
|
|
name: ['intltool', 'libxslt', 'libxml2']
|
|
state: present
|
|
become: yes
|
|
- name: Validate comps files
|
|
ansible.builtin.command:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
cmd: ci/validate-comps
|