From b6b4aab4a8d7a2e28754b1101b4ae07d8053b087 Mon Sep 17 00:00:00 2001 From: Jiri Konecny Date: Wed, 3 Jan 2024 14:20:08 +0100 Subject: [PATCH] infra: 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 73feea0e2a6..7b06b0e297e 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 1671a98b12f..95c6d164d7a 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; \