copr-be: turn on ppc64le in production

This commit is contained in:
Pavel Raiskup 2021-07-13 09:15:01 +02:00
parent 738c89d04d
commit e03410cb97
3 changed files with 6 additions and 4 deletions

View file

@ -46,7 +46,7 @@ builders:
#x86_hypervisor_04: #x86_hypervisor_04:
# x86_64: [20, 4, 20] # x86_64: [20, 4, 20]
#ppc64le_hypervisor_01: ppc64le_hypervisor_01:
# ppc64le: [2, 1, 1] ppc64le: [15, 4, 15]
rpm_vendor_copr_name: Fedora Copr rpm_vendor_copr_name: Fedora Copr

View file

@ -166,8 +166,9 @@
- name: calculate the maximum resalloc workers per architecture - name: calculate the maximum resalloc workers per architecture
set_fact: "max_{{ item }}_workers={{ builders | community.general.json_query('*.'+item+'[0]') | sum() }}" set_fact: "max_{{ item }}_workers={{ builders | community.general.json_query('*.'+item+'[0]') | sum() }}"
with_items: with_items:
- x86_64
- aarch64 - aarch64
- ppc64le
- x86_64
tags: tags:
- provision_config - provision_config

View file

@ -51,7 +51,8 @@ builds_max_workers_arch=
s390x={{ (max_x86_64_workers|int / 4)|int }}, s390x={{ (max_x86_64_workers|int / 4)|int }},
i386={{ (max_x86_64_workers|int / 4)|int }}, i386={{ (max_x86_64_workers|int / 4)|int }},
i586={{ (max_x86_64_workers|int / 4)|int }}, i586={{ (max_x86_64_workers|int / 4)|int }},
i686={{ (max_x86_64_workers|int / 4)|int }} i686={{ (max_x86_64_workers|int / 4)|int }},
ppc64le={{ (max_ppc64le_workers }}
# Maximum number of concurrently running tasks per project owner. # Maximum number of concurrently running tasks per project owner.
{% if env == 'production' %} {% if env == 'production' %}