copr-be: enable high-performance builders in prod

This commit is contained in:
Pavel Raiskup 2023-10-23 22:05:00 +02:00
parent 48f66663a4
commit b1d0d6c626
2 changed files with 12 additions and 2 deletions

View file

@ -6,8 +6,8 @@ aws_{{ arch }}_{{ on_demand + '_' if on_demand is not none else '' }}{% if spot
max_starting: {{ max_starting }}
max_prealloc: {{ max_prealloc }}
{% else %}
max: 1
max_starting: 1
max: 10
max_starting: 4
{% endif %}
tags:
- name: copr_builder

View file

@ -199,4 +199,14 @@ EXTRA_BUILDCHROOT_TAGS = [{
"pattern": "@copr/measure-hv-p08.*/.*/.*",
"tags": ["arch_power8"],
}]
{% else %}
EXTRA_BUILDCHROOT_TAGS = [{
# https://github.com/fedora-copr/copr/issues/2966
"pattern": "@asahi/kernel/.*(x86_64|aarch64)/kernel",
"tags": ["on_demand_powerful"],
}, {
# https://github.com/fedora-copr/copr/issues/2966
"pattern": "ngompa/fedora-asahi-dev/.*(x86_64|aarch64)/kernel",
"tags": ["on_demand_powerful"],
}]
{% endif %}