ELN: Build extra_isos only for x86_64.

Signed-off-by: Jan Kaluza <jkaluza@redhat.com>
This commit is contained in:
Jan Kaluza 2020-10-26 17:11:00 +01:00
parent 6fc47a24ee
commit f8b5c4aaf0
3 changed files with 5 additions and 0 deletions

View File

@ -44,3 +44,5 @@ EXTRA_BUILDINSTALL_SKIP = ('^BaseOS$', {
'ppc64le': True,
's390x': True
})
EXTRA_ISOS_ARCHES = ["x86_64"]

View File

@ -5,6 +5,7 @@ extra_isos = {
"filename": "{compose_id}-{arch}-{disc_type}{disc_num}{suffix}",
"skip_src": False,
"extra_files": EXTRA_FILES,
"arches": EXTRA_ISOS_ARCHES,
# Make extra_isos failable until we have working installer.
"failable_arches": ['aarch64', 'ppc64le', 's390x', 'x86_64', 'i386']
}]

View File

@ -31,3 +31,5 @@ global GATHER_PREPOPULATE_FILE
global GATHER_PREPOPULATE_COMMAND
global EXTRA_FILES
EXTRA_FILES = []
global EXTRA_ISOS_ARCHES
EXTRA_ISOS_ARCHES = []