From e79ec5a002d718fdba0b7ff241b865a43678ab04 Mon Sep 17 00:00:00 2001 From: "red-hat-konflux-kflux-prd-rh03[bot]" <206760901+red-hat-konflux-kflux-prd-rh03[bot]@users.noreply.github.com> Date: Wed, 29 Apr 2026 00:04:13 +0000 Subject: [PATCH 1/2] chore(deps): update dependency fedora to v44 Signed-off-by: red-hat-konflux-kflux-prd-rh03 <206760901+red-hat-konflux-kflux-prd-rh03[bot]@users.noreply.github.com> --- Dockerfile | 2 +- tests/containers/nfs/Containerfile | 2 +- tests/containers/tang/Containerfile | 2 +- tests/containers/targetcli/Containerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 22f55ba833..72359348e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # When rebasing to new Fedora, also update openshift/release: # https://github.com/openshift/release/tree/master/ci-operator/config/coreos/coreos-assembler/coreos-coreos-assembler-main.yaml -FROM quay.io/fedora/fedora:43 +FROM quay.io/fedora/fedora:44 WORKDIR /root/containerbuild # This variable is enabled by Konflux to build the container image hermatically. ARG NO_NETWORK=0 diff --git a/tests/containers/nfs/Containerfile b/tests/containers/nfs/Containerfile index 0af4ffb932..30027fdf95 100644 --- a/tests/containers/nfs/Containerfile +++ b/tests/containers/nfs/Containerfile @@ -1,4 +1,4 @@ -FROM quay.io/fedora/fedora:43 +FROM quay.io/fedora/fedora:44 RUN dnf -y install /usr/bin/ps nfs-utils && dnf clean all && rm -rf /var/cache/yum diff --git a/tests/containers/tang/Containerfile b/tests/containers/tang/Containerfile index b5d13852da..9aee003572 100644 --- a/tests/containers/tang/Containerfile +++ b/tests/containers/tang/Containerfile @@ -1,4 +1,4 @@ -FROM quay.io/fedora/fedora:43 +FROM quay.io/fedora/fedora:44 RUN dnf -y install systemd tang && dnf clean all && rm -rf /var/cache/yum EXPOSE 80 diff --git a/tests/containers/targetcli/Containerfile b/tests/containers/targetcli/Containerfile index 2255ad47dd..c108f8d507 100644 --- a/tests/containers/targetcli/Containerfile +++ b/tests/containers/targetcli/Containerfile @@ -1,4 +1,4 @@ -FROM quay.io/fedora/fedora:43 +FROM quay.io/fedora/fedora:44 RUN dnf install -y targetcli kmod && dnf clean all RUN systemctl enable target From f4739fbb84a9e0493b1dc287ed4c7dc0258d75cf Mon Sep 17 00:00:00 2001 From: jbtrystram Date: Tue, 5 May 2026 16:42:32 +0200 Subject: [PATCH 2/2] build.sh ignore missing dependencies A few packages have been orphaned in F44 so let's skip them for now. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 52d3d44f99..c8b4a34c1b 100755 --- a/build.sh +++ b/build.sh @@ -73,7 +73,7 @@ install_rpms() { builddeps=$(grep -v '^#' "${srcdir}"/src/build-deps.txt) # Process our base dependencies + build dependencies and install - (echo "${builddeps}" && echo "${frozendeps}" && "${srcdir}"/src/print-dependencies.sh) | xargs yum -y install + (echo "${builddeps}" && echo "${frozendeps}" && "${srcdir}"/src/print-dependencies.sh) | xargs yum -y install --skip-unavailable # Delete file that only exists on ppc64le because it is causing # sudo to not work.