CI: fix xml tests on RHEL 8 (#7827)
* Try to fix xml installation on RHEL. * Install python-lxml on RHEL 8. Should speed up tests considerably.pull/7837/head
parent
9946f758af
commit
878664778e
|
@ -14,6 +14,15 @@
|
||||||
state: present
|
state: present
|
||||||
when: ansible_os_family == "FreeBSD"
|
when: ansible_os_family == "FreeBSD"
|
||||||
|
|
||||||
|
- name: Install requirements (RHEL 8)
|
||||||
|
package:
|
||||||
|
name:
|
||||||
|
- libxml2-devel
|
||||||
|
- libxslt-devel
|
||||||
|
- python3-lxml
|
||||||
|
state: present
|
||||||
|
when: ansible_distribution == "RedHat" and ansible_distribution_major_version == "8"
|
||||||
|
|
||||||
# Needed for MacOSX !
|
# Needed for MacOSX !
|
||||||
- name: Install lxml
|
- name: Install lxml
|
||||||
pip:
|
pip:
|
||||||
|
|
Loading…
Reference in New Issue