MBS: Drop armv7hl arch from Fedora 37+
This commit is contained in:
parent
1047fcdd33
commit
e8a358cc0e
1 changed files with 6 additions and 2 deletions
|
@ -165,9 +165,13 @@ class ProdConfiguration(BaseConfiguration):
|
||||||
|
|
||||||
{% else %}
|
{% else %}
|
||||||
KOJI_PROFILE = 'production'
|
KOJI_PROFILE = 'production'
|
||||||
ARCHES = ['aarch64', 'armv7hl', 'i686', 'ppc64le', 'x86_64', 's390x']
|
ARCHES = ['aarch64', 'i686', 'ppc64le', 'x86_64', 's390x']
|
||||||
BASE_MODULE_ARCHES = {
|
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']
|
'platform:el8' : ['aarch64', 'ppc64le', 'x86_64', 's390x']
|
||||||
}
|
}
|
||||||
KOJI_REPOSITORY_URL = 'https://kojipkgs.fedoraproject.org/repos'
|
KOJI_REPOSITORY_URL = 'https://kojipkgs.fedoraproject.org/repos'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue