Signed-off-by: Jan Kaluza <jkaluza@redhat.com>
This commit is contained in:
Jan Kaluza 2020-12-01 07:39:45 +01:00
parent 8c96147922
commit f7bc9330b3
2 changed files with 2 additions and 1 deletions

View File

@ -84,7 +84,7 @@ image_build = {
'repo': 'Everything',
'install_tree_from': 'Everything',
'subvariant': 'Container_Base',
'arches': ['aarch64', 'ppc64le', 's390x', 'x86_64']
'arches': ['aarch64', 'ppc64le', 'x86_64'] # Skip s390x until https://pagure.io/releng/issue/9875 is fixed.
'failable': ['*'],
},
'factory-parameters': {

View File

@ -42,4 +42,5 @@ EXTRA_ISOS_ARCHES = ["x86_64"]
EXTRA_BUILDINSTALL_SKIP = ('^BaseOS$', {
'i386': True,
's390x': True, # Skip s390x until https://pagure.io/releng/issue/9875 is fixed.
})