From: Andrew Grimberg Date: Thu, 9 Jan 2025 17:22:15 +0000 (-0800) Subject: Fix: Replace sigul install with direct rpm install X-Git-Tag: v0.90.12^0 X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F79%2F73379%2F3;p=releng%2Fglobal-jjb.git Fix: Replace sigul install with direct rpm install The Koji repos are no longer working correctly for CentOS7 as it is long EOL. The sigul is still currently available for direct refence so we will install it that way. Issue: RELENG-5669 Change-Id: I69807b6e60ecfbd63a96f7bf730d046a1ac451fd Signed-off-by: Andrew Grimberg --- diff --git a/docker/Dockerfile b/docker/Dockerfile index 53ad6150..ff5d62d3 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -17,7 +17,8 @@ skip_if_unavailable=True' > /etc/yum.repos.d/fedora-infra-sigul.repo RUN sed -i_ 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* || exit 1 RUN sed -i_ 's@#baseurl=http://mirror.centos.org@baseurl=http://vault.centos.org@g' /etc/yum.repos.d/CentOS-* || exit 1 -RUN yum install -y -q sigul +# install the sigul package directly from the fedora infra repo +RUN yum install -y -q https://kojipkgs.fedoraproject.org//packages/sigul/0.207/1.el7/x86_64/sigul-0.207-1.el7.x86_64.rpm RUN mkdir -p /w/workspace && mkdir -p /home/jenkins diff --git a/releasenotes/notes/2025-sigul_install_fix-5c5e051e2cec035d.yaml b/releasenotes/notes/2025-sigul_install_fix-5c5e051e2cec035d.yaml new file mode 100644 index 00000000..993ef169 --- /dev/null +++ b/releasenotes/notes/2025-sigul_install_fix-5c5e051e2cec035d.yaml @@ -0,0 +1,6 @@ +--- +fixes: + - | + The Koji repositories have stopped properly responding for EL7 based + systems and this causes issues with the installation of Sigul. This update + fixes the issue by directly referencing the package for EL7 based systems.