From a1b9ee23a348705dce7766dc360888d641a00086 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Sun, 23 May 2021 22:54:44 +0200 Subject: [PATCH] copr-be: limit max tickets for 32bit x86 --- roles/copr/backend/templates/copr-be.conf.j2 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/roles/copr/backend/templates/copr-be.conf.j2 b/roles/copr/backend/templates/copr-be.conf.j2 index ba4e0fea64..9a06f2f3df 100644 --- a/roles/copr/backend/templates/copr-be.conf.j2 +++ b/roles/copr/backend/templates/copr-be.conf.j2 @@ -42,11 +42,16 @@ builds_max_workers={{ max_workers }} # Maximum number of concurrently running tasks per architecture. Since we # emulate s390x and armhfp on x86_64, we give it ~25% of the x86_64 quota. +# The 32bit x86 variants (i386, i586 and i686) are in minority now, so let's +# limit them as well. builds_max_workers_arch= x86_64={{ max_x86_64_workers }}, aarch64={{ max_aarch64_workers }}, armhfp={{ (max_x86_64_workers|int / 4)|int }}, - s390x={{ (max_x86_64_workers|int / 4)|int }} + s390x={{ (max_x86_64_workers|int / 4)|int }}, + i386={{ (max_x86_64_workers|int / 4)|int }}, + i586={{ (max_x86_64_workers|int / 4)|int }}, + i686={{ (max_x86_64_workers|int / 4)|int }} # Maximum number of concurrently running tasks per project owner. {% if env == 'production' %}