copr: builders: best=False for centos-stream

https://bugzilla.redhat.com/show_bug.cgi?id=1758467
This commit is contained in:
Pavel Raiskup 2019-11-28 10:53:43 +01:00 committed by Pierre-Yves Chibon
parent 1fac6da007
commit e0f8122647
3 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,12 @@
include('templates/centos-stream.tpl')
config_opts['root'] = 'centos-stream-aarch64'
config_opts['target_arch'] = 'aarch64'
config_opts['legal_host_arches'] = ('aarch64',)
# Unfortunately, we need to temporarily set this
# See: RHBZ 1756681 and RHBZ 1758467
config_opts['yum.conf'] += """
[main]
best=False
"""

View file

@ -0,0 +1,12 @@
include('templates/centos-stream.tpl')
config_opts['root'] = 'centos-stream-ppc64le'
config_opts['target_arch'] = 'ppc64le'
config_opts['legal_host_arches'] = ('ppc64le',)
# Unfortunately, we need to temporarily set this
# See: RHBZ 1756681 and RHBZ 1758467
config_opts['yum.conf'] += """
[main]
best=False
"""

View file

@ -0,0 +1,12 @@
include('templates/centos-stream.tpl')
config_opts['root'] = 'centos-stream-x86_64'
config_opts['target_arch'] = 'x86_64'
config_opts['legal_host_arches'] = ('x86_64',)
# Unfortunately, we need to temporarily set this
# See: RHBZ 1756681 and RHBZ 1758467
config_opts['yum.conf'] += """
[main]
best=False
"""