From 9d06f4a4f1cebbd71000c0f09069425f20d2d413 Mon Sep 17 00:00:00 2001 From: Jan Kaluza Date: Oct 20 2020 05:58:18 +0000 Subject: ELN: make extra_isos failable for now so it does not block the compose. Signed-off-by: Jan Kaluza --- diff --git a/shared/extra_isos.conf b/shared/extra_isos.conf index e2af195..5c91753 100644 --- a/shared/extra_isos.conf +++ b/shared/extra_isos.conf @@ -5,5 +5,7 @@ extra_isos = { "filename": "{compose_id}-{arch}-{disc_type}{disc_num}{suffix}", "skip_src": False, "extra_files": EXTRA_FILES, + # Make extra_isos failable until we have working installer. + "failable_arches": ['aarch64', 'ppc64le', 's390x', 'x86_64', 'i386'] }] } diff --git a/shared/gather.conf b/shared/gather.conf index e565487..3bc9259 100644 --- a/shared/gather.conf +++ b/shared/gather.conf @@ -5,6 +5,7 @@ gather_method = { # Anything that is not AppStream, CRB or Buildroot should use the old depsolver "^(?!(AppStream|CRB|Buildroot)).*$": { "comps": "deps", + "json": "deps", }, "^(AppStream|CRB|Buildroot)$": "hybrid", }