Skip to content

Commit

Permalink
Fix: Replace sigul install with direct rpm install
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
tykeal committed Jan 9, 2025
1 parent 8b4402e commit efef6e2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit efef6e2

Please sign in to comment.