From: Iker Pedrosa Date: Thu, 31 Oct 2024 08:25:57 +0000 (+0100) Subject: CI: fix fedora build problems X-Git-Tag: 4.17.0-rc1~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8c3731e058fbb25431fd384f5dac5f8285228dd;p=thirdparty%2Fshadow.git CI: fix fedora build problems The new fedora 41 has been released and some things have changed. Make sure to install python and python3-dnf and specify the dnf version in the roles. Signed-off-by: Iker Pedrosa --- diff --git a/share/ansible/roles/ci_run/tasks/fedora.yml b/share/ansible/roles/ci_run/tasks/fedora.yml index cedeef4d1..9a7e0ea4e 100644 --- a/share/ansible/roles/ci_run/tasks/fedora.yml +++ b/share/ansible/roles/ci_run/tasks/fedora.yml @@ -1,7 +1,11 @@ --- # tasks file for ci_run +- name: Ensure python is installed + ansible.builtin.raw: dnf install -y python3 python3-dnf + - name: Ensure dependencies are installed ansible.builtin.dnf: + use_backend: dnf4 name: - dnf-plugins-core - libcmocka-devel