From 8d620139634831abc793afc9a3b6abd7cecbd113 Mon Sep 17 00:00:00 2001 From: Vojtech Trefny Date: Thu, 15 Aug 2024 16:24:56 +0200 Subject: [PATCH] ci: Remove priority from Testing farm repositories Testing farm sets priority of their repositories to 9 which means the repo is prioritized over all other repositories including our Copr repo with daily builds preventing the latest libblockdev from being installed. --- plans/tests.fmf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plans/tests.fmf b/plans/tests.fmf index 13eaf1e9a..e72d619ac 100644 --- a/plans/tests.fmf +++ b/plans/tests.fmf @@ -10,6 +10,9 @@ prepare: script: - sudo dnf install -y 'dnf-command(copr)' - sudo dnf copr enable -y @storage/udisks-daily + # TF prioritizes Fedora tag repo over all others, in particular our daily COPR + - for f in $(grep -l -r 'testing-farm-tag-repository' /etc/yum.repos.d); do sed -i '/priority/d' "$f" ;done + - sudo dnf -y update - name: ansible how: ansible