copr-be: limit max tickets for 32bit x86

This commit is contained in:
Pavel Raiskup 2021-05-23 22:54:44 +02:00
parent fe888acea9
commit a1b9ee23a3

View file

@ -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' %}