CI: install required packages

We need the packages with xsltproc, xmllint and intltool-merge
in them.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2023-04-22 10:02:45 -07:00
parent 1aadd5d807
commit 33e52e780a

View File

@ -1,5 +1,10 @@
- hosts: all - hosts: all
tasks: tasks:
- name: Install needed packages
package:
name: ['intltool', 'libxslt', 'libxml2']
state: present
become: yes
- name: Validate comps files - name: Validate comps files
ansible.builtin.command: ansible.builtin.command:
chdir: "{{ ansible_user_dir }}/{{ zuul.project.src_dir }}" chdir: "{{ ansible_user_dir }}/{{ zuul.project.src_dir }}"