ELN: Generate extra_isos.

Signed-off-by: Jan Kaluza <jkaluza@redhat.com>
This commit is contained in:
Jan Kaluza 2020-10-20 07:34:58 +02:00
parent 2dcf60173f
commit 5382df9c66
4 changed files with 12 additions and 1 deletions

View File

@ -31,7 +31,6 @@ skip_phases = [
"live_images",
"ostree",
"osbs",
"extra_isos",
]
# Enables macboot on x86_64 for all variants and disables upgrade image building

View File

@ -8,3 +8,4 @@ from createrepo import *
from createiso import *
from buildinstall import *
from lookaside import *
from extra_isos import *

9
shared/extra_isos.conf Normal file
View File

@ -0,0 +1,9 @@
extra_isos = {
"BaseOS": [{
"include_variants": ["AppStream"],
"filename": "{compose_id}-{arch}-{disc_type}{disc_num}{suffix}",
"skip_src": False,
"extra_files": EXTRA_FILES,
}]
}

View File

@ -29,3 +29,5 @@ global GATHER_PREPOPULATE_REPO
global GATHER_PREPOPULATE_BRANCH
global GATHER_PREPOPULATE_FILE
global GATHER_PREPOPULATE_COMMAND
global EXTRA_FILES
EXTRA_FILES = []