From 7bacc1c22f4c3a17b45a89e67162c1926c24a4a5 Mon Sep 17 00:00:00 2001 From: gursewak1997 Date: Mon, 9 Mar 2026 12:00:05 -0700 Subject: [PATCH] spec: Use ExclusiveArch for supported architectures Only build RPM packages for x86_64 and aarch64, which are the architectures with full support and testing. This prevents build failures on ppc64le/s390x where the unit tests fail. This doesn't block developers from building with cargo on any architecture for local experimentation. Signed-off-by: gursewak1997 --- contrib/packaging/bcvk.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/packaging/bcvk.spec b/contrib/packaging/bcvk.spec index b4b902d..6614628 100644 --- a/contrib/packaging/bcvk.spec +++ b/contrib/packaging/bcvk.spec @@ -11,8 +11,8 @@ URL: https://github.com/bootc-dev/bcvk Source0: %{url}/releases/download/v%{version}/bcvk-%{version}.tar.zstd Source1: %{url}/releases/download/v%{version}/bcvk-%{version}-vendor.tar.zstd -# https://fedoraproject.org/wiki/Changes/EncourageI686LeafRemoval -ExcludeArch: %{ix86} +# Only build for architectures with full support and testing +ExclusiveArch: x86_64 aarch64 Requires: binutils Requires: openssh-clients