ci: install ansible-core instead of ansible for EL9

ansible-core no longer provides ansible so we need to require specifically
ansible-core.

Signed-off-by: Ondřej Budai <ondrej@budai.cz>
This commit is contained in:
Ondřej Budai 2021-10-01 09:20:06 +02:00 committed by Ondřej Budai
parent 4f8dc76ca7
commit 2070747876

View file

@ -20,7 +20,7 @@ elif [[ $ID == rhel || $ID == centos ]] && [[ ${VERSION_ID%.*} == 9 ]]; then
sudo dnf copr enable -y copr.devel.redhat.com/osbuild-team/epel-el9 "rhel-9.dev-$ARCH"
# koji is not available yet apparently
# jmespath required for json_query
sudo dnf install -y ansible python3-jmespath
sudo dnf install -y ansible-core python3-jmespath
# json_query filter, used in our ansible playbooks, was moved to the
# 'community.general' collection