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
1 changed files with 11 additions and 6 deletions

View File

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