From 2ab13549c566b2915030b75218ffd1e43fc98f78 Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Thu, 30 Apr 2026 06:55:52 -0500 Subject: [PATCH] fix(copr): drop epel-9 chroots since they cannot satisfy rust >= 1.91 EPEL 9 / RHEL 9 ship rust below 1.91, so the BuildRequires emitted by build-copr.sh fails dependency resolution and every epel-9 build aborts before rpmbuild runs. mise's MSRV moved to 1.91 in #9295 (edition 2024 / aws-smithy bumps); EPEL 10 already has 1.91+, so keep that and drop el9. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/copr-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/copr-publish.yml b/.github/workflows/copr-publish.yml index 49524164d7..f09cb01a3d 100644 --- a/.github/workflows/copr-publish.yml +++ b/.github/workflows/copr-publish.yml @@ -8,7 +8,7 @@ on: chroots: description: "COPR chroots to target (space-separated)" required: false - default: "fedora-rawhide-aarch64 fedora-rawhide-x86_64 fedora-44-aarch64 fedora-44-x86_64 fedora-43-aarch64 fedora-43-x86_64 fedora-42-aarch64 fedora-42-x86_64 epel-10-aarch64 epel-10-x86_64 epel-9-aarch64 epel-9-x86_64" + default: "fedora-rawhide-aarch64 fedora-rawhide-x86_64 fedora-44-aarch64 fedora-44-x86_64 fedora-43-aarch64 fedora-43-x86_64 fedora-42-aarch64 fedora-42-x86_64 epel-10-aarch64 epel-10-x86_64" type: string use_serious_profile: description: 'Use the "serious" profile for optimized builds (LTO enabled)' @@ -37,7 +37,7 @@ jobs: VERSION=$(./scripts/get-version.sh | sed 's/^v//') if [ "${{ github.event_name }}" = "release" ]; then - CHROOTS="fedora-rawhide-aarch64 fedora-rawhide-x86_64 fedora-44-aarch64 fedora-44-x86_64 fedora-43-aarch64 fedora-43-x86_64 fedora-42-aarch64 fedora-42-x86_64 epel-10-aarch64 epel-10-x86_64 epel-9-aarch64 epel-9-x86_64" + CHROOTS="fedora-rawhide-aarch64 fedora-rawhide-x86_64 fedora-44-aarch64 fedora-44-x86_64 fedora-43-aarch64 fedora-43-x86_64 fedora-42-aarch64 fedora-42-x86_64 epel-10-aarch64 epel-10-x86_64" else CHROOTS="${{ inputs.chroots }}" fi