From fd6828d7c8bcae253f2d5ad3e1dd8d58e280ed35 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 12 Aug 2025 09:06:29 -0700 Subject: [PATCH] buildvm-x86-riscv: increase max jobs a bunch These vm's run tasks like newrepos and tagging, so they can handle a lot more smaller jobs like that. Increase things to 128 for now. Signed-off-by: Kevin Fenzi --- roles/koji_builder/templates/kojid.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/roles/koji_builder/templates/kojid.conf b/roles/koji_builder/templates/kojid.conf index 17be33ea06..60445d8365 100644 --- a/roles/koji_builder/templates/kojid.conf +++ b/roles/koji_builder/templates/kojid.conf @@ -5,6 +5,9 @@ sleeptime=15 {% if host in groups['buildvm_s390x'] and host in groups['runroot'] %} ; The maximum number of jobs that kojid will handle at a time maxjobs=1 +{% elif host in groups['buildvm_x86_riscv'] %} +; The maximum number of jobs that kojid will handle at a time +maxjobs=128 {% else %} ; The maximum number of jobs that kojid will handle at a time maxjobs=25