MBS: Drop armv7hl arch from Fedora 37+

This commit is contained in:
Mikolaj Izdebski 2022-02-16 14:58:41 +01:00
parent 1047fcdd33
commit e8a358cc0e

View file

@ -165,9 +165,13 @@ class ProdConfiguration(BaseConfiguration):
{% else %}
KOJI_PROFILE = 'production'
ARCHES = ['aarch64', 'armv7hl', 'i686', 'ppc64le', 'x86_64', 's390x']
ARCHES = ['aarch64', 'i686', 'ppc64le', 'x86_64', 's390x']
BASE_MODULE_ARCHES = {
'platform:f31': ['aarch64', 'armv7hl', 'ppc64le', 'x86_64', 's390x'],
# Fedora >= 37 removes armv7hl, Fedora < 37 still have it
# https://fedoraproject.org/wiki/Changes/RetireARMv7
'platform:f34': ['aarch64', 'i686', 'ppc64le', 'x86_64', 's390x']
'platform:f35': ['aarch64', 'i686', 'ppc64le', 'x86_64', 's390x']
'platform:f36': ['aarch64', 'i686', 'ppc64le', 'x86_64', 's390x']
'platform:el8' : ['aarch64', 'ppc64le', 'x86_64', 's390x']
}
KOJI_REPOSITORY_URL = 'https://kojipkgs.fedoraproject.org/repos'