From df88f3525fe22d1b6feaa35d2644ba9d47f281c2 Mon Sep 17 00:00:00 2001 From: Andrew Lukoshko Date: Sun, 22 Feb 2026 20:12:25 +0000 Subject: [PATCH] Replace debug_arches change with debug_package disable for riscv64 --- config.yaml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/config.yaml b/config.yaml index 2b2c48e..419c373 100644 --- a/config.yaml +++ b/config.yaml @@ -14,8 +14,18 @@ actions: %endif count: 1 - target: "spec" - find: "%global debug_arches %{ix86} x86_64 sparcv9 sparc64 %{aarch64} %{power64} s390x" - replace: "%global debug_arches %{ix86} x86_64 sparcv9 sparc64 %{aarch64} %{power64} s390x riscv64" + find: | + # $ fedpkg mockbuild --without slowdebug --without fastdebug + + # Enable fastdebug builds by default on relevant arches. + replace: | + # $ fedpkg mockbuild --without slowdebug --without fastdebug + + %ifarch riscv64 + %define debug_package %{nil} + %endif + + # Enable fastdebug builds by default on relevant arches. count: 1 - modify_release: @@ -27,4 +37,4 @@ actions: email: "alukoshko@almalinux.org" line: - "Use el8 portable packages, el10 for riscv64" - - "Add riscv64 to debug_arches" + - "Disable debug_package for riscv64"