mbs stg config: Drop i686 for f31 and later
Signed-off-by: Mohan Boddu <mboddu@bhujji.com>
This commit is contained in:
parent
692c99395d
commit
1e516e71b5
1 changed files with 8 additions and 1 deletions
|
@ -127,7 +127,14 @@ class ProdConfiguration(BaseConfiguration):
|
|||
KOJI_CONFIG = path.join(confdir, 'koji.conf')
|
||||
{% if env == 'staging' %}
|
||||
KOJI_PROFILE = 'staging'
|
||||
ARCHES = ['aarch64', 'x86_64', 'i686']
|
||||
ARCHES = ['aarch64', 'x86_64']
|
||||
BASE_MODULE_ARCHES = {
|
||||
# Fedora 31 and later drop 'i686'. Keep it around for older releases.
|
||||
# https://fedoraproject.org/wiki/Changes/Noi686Repositories
|
||||
'platform:f28': ['aarch64', 'x86_64', 'i686'],
|
||||
'platform:f29': ['aarch64', 'x86_64', 'i686'],
|
||||
'platform:f30': ['aarch64', 'x86_64', 'i686'],
|
||||
}
|
||||
KOJI_REPOSITORY_URL = 'https://kojipkgs.stg.fedoraproject.org/repos'
|
||||
MESSAGING_TOPIC_PREFIX = ['org.fedoraproject.stg']
|
||||
PDC_URL = 'https://pdc.stg.fedoraproject.org/rest_api/v1'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue