mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
[PR #7827/87866477 backport][stable-7] CI: fix xml tests on RHEL 8 (#7829)
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.
(cherry picked from commit 878664778e
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
50e2794658
commit
a0c7c10099
1 changed files with 9 additions and 0 deletions
|
@ -14,6 +14,15 @@
|
|||
state: present
|
||||
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 !
|
||||
- name: Install lxml
|
||||
pip:
|
||||
|
|
Loading…
Reference in a new issue