From 34a43cbcee7fa6ca9ba9c5c28715e6ac25de50a5 Mon Sep 17 00:00:00 2001 From: Jiri Konecny Date: Wed, 3 Jan 2024 14:20:08 +0100 Subject: [PATCH] Do not use blivet COPR for container builds Blivet project is building COPR daily builds always from `master` branch. However, Fedora-39 Anaconda is not compatible with `master` blivet because of removal of NVDIMM support. This will fix container builds for Fedora-39. --- dockerfile/anaconda-ci/Dockerfile | 2 -- dockerfile/anaconda-rpm/Dockerfile | 2 -- 2 files changed, 4 deletions(-) diff --git a/dockerfile/anaconda-ci/Dockerfile b/dockerfile/anaconda-ci/Dockerfile index 73feea0e2a64..7b06b0e297ed 100644 --- a/dockerfile/anaconda-ci/Dockerfile +++ b/dockerfile/anaconda-ci/Dockerfile @@ -42,8 +42,6 @@ RUN set -ex; \ fi; \ BRANCH=${BRANCH#fedora-}; \ dnf copr enable -y ${copr_repo} fedora-${BRANCH}-x86_64; \ - dnf copr enable -y @storage/blivet-daily fedora-${BRANCH}-x86_64; \ - dnf copr enable -y @storage/udisks-daily fedora-${BRANCH}-x86_64; \ else \ dnf copr enable -y ${copr_repo} fedora-eln-x86_64; \ fi; \ diff --git a/dockerfile/anaconda-rpm/Dockerfile b/dockerfile/anaconda-rpm/Dockerfile index 1671a98b12fa..95c6d164d7ac 100644 --- a/dockerfile/anaconda-rpm/Dockerfile +++ b/dockerfile/anaconda-rpm/Dockerfile @@ -45,8 +45,6 @@ RUN set -ex; \ fi; \ BRANCH=${BRANCH#fedora-}; \ dnf copr enable -y ${copr_repo} fedora-${BRANCH}-x86_64; \ - dnf copr enable -y @storage/blivet-daily fedora-${BRANCH}-x86_64; \ - dnf copr enable -y @storage/udisks-daily fedora-${BRANCH}-x86_64; \ else \ dnf copr enable -y ${copr_repo} fedora-eln-x86_64; \ fi; \