default "with_jigdo" to False
Fedora has not composed with jigdo in a long time. Disable it by default. Signed-off-by: Ken Dreyer <kdreyer@redhat.com> Merges: https://pagure.io/pungi/pull-request/1561 Fixes: https://pagure.io/pungi/issue/1560
This commit is contained in:
parent
9d02f87c99
commit
94ffa1c5c6
7 changed files with 19 additions and 23 deletions
|
|
@ -109,5 +109,3 @@ extra_isos = {
|
|||
'filename': 'extra-{filename}',
|
||||
}]
|
||||
}
|
||||
|
||||
create_jigdo = False
|
||||
|
|
|
|||
|
|
@ -120,8 +120,8 @@ class CreateisoPhaseTest(helpers.PungiTestCase):
|
|||
graft_points="dummy-graft-points",
|
||||
arch="x86_64",
|
||||
supported=True,
|
||||
jigdo_dir="%s/compose/Server/x86_64/jigdo" % self.topdir,
|
||||
os_tree="%s/compose/Server/x86_64/os" % self.topdir,
|
||||
jigdo_dir=None,
|
||||
os_tree=None,
|
||||
hfs_compat=True,
|
||||
use_xorrisofs=False,
|
||||
)
|
||||
|
|
@ -246,8 +246,8 @@ class CreateisoPhaseTest(helpers.PungiTestCase):
|
|||
arch="x86_64",
|
||||
buildinstall_method="lorax",
|
||||
supported=True,
|
||||
jigdo_dir="%s/compose/Server/x86_64/jigdo" % self.topdir,
|
||||
os_tree="%s/compose/Server/x86_64/os" % self.topdir,
|
||||
jigdo_dir=None,
|
||||
os_tree=None,
|
||||
hfs_compat=True,
|
||||
use_xorrisofs=False,
|
||||
),
|
||||
|
|
@ -258,8 +258,8 @@ class CreateisoPhaseTest(helpers.PungiTestCase):
|
|||
graft_points="dummy-graft-points",
|
||||
arch="src",
|
||||
supported=True,
|
||||
jigdo_dir="%s/compose/Server/source/jigdo" % self.topdir,
|
||||
os_tree="%s/compose/Server/source/tree" % self.topdir,
|
||||
jigdo_dir=None,
|
||||
os_tree=None,
|
||||
hfs_compat=True,
|
||||
use_xorrisofs=False,
|
||||
),
|
||||
|
|
@ -390,8 +390,8 @@ class CreateisoPhaseTest(helpers.PungiTestCase):
|
|||
graft_points="dummy-graft-points",
|
||||
arch="src",
|
||||
supported=True,
|
||||
jigdo_dir="%s/compose/Server/source/jigdo" % self.topdir,
|
||||
os_tree="%s/compose/Server/source/tree" % self.topdir,
|
||||
jigdo_dir=None,
|
||||
os_tree=None,
|
||||
hfs_compat=True,
|
||||
use_xorrisofs=False,
|
||||
)
|
||||
|
|
@ -497,8 +497,8 @@ class CreateisoPhaseTest(helpers.PungiTestCase):
|
|||
graft_points="dummy-graft-points",
|
||||
arch="x86_64",
|
||||
supported=True,
|
||||
jigdo_dir="%s/compose/Server/x86_64/jigdo" % self.topdir,
|
||||
os_tree="%s/compose/Server/x86_64/os" % self.topdir,
|
||||
jigdo_dir=None,
|
||||
os_tree=None,
|
||||
hfs_compat=False,
|
||||
use_xorrisofs=False,
|
||||
)
|
||||
|
|
@ -580,7 +580,7 @@ class CreateisoThreadTest(helpers.PungiTestCase):
|
|||
cmd["cmd"],
|
||||
channel=None,
|
||||
mounts=[self.topdir],
|
||||
packages=["coreutils", "genisoimage", "isomd5sum", "jigdo"],
|
||||
packages=["coreutils", "genisoimage", "isomd5sum"],
|
||||
use_shell=True,
|
||||
weight=None,
|
||||
)
|
||||
|
|
@ -750,7 +750,6 @@ class CreateisoThreadTest(helpers.PungiTestCase):
|
|||
"coreutils",
|
||||
"genisoimage",
|
||||
"isomd5sum",
|
||||
"jigdo",
|
||||
"lorax",
|
||||
"which",
|
||||
],
|
||||
|
|
|
|||
|
|
@ -148,7 +148,7 @@ class ExtraIsosThreadTest(helpers.PungiTestCase):
|
|||
log_file=os.path.join(
|
||||
self.topdir, "logs/x86_64/extraiso-my.iso.x86_64.log"
|
||||
),
|
||||
with_jigdo=True,
|
||||
with_jigdo=False,
|
||||
)
|
||||
],
|
||||
)
|
||||
|
|
@ -298,7 +298,7 @@ class ExtraIsosThreadTest(helpers.PungiTestCase):
|
|||
log_file=os.path.join(
|
||||
self.topdir, "logs/x86_64/extraiso-my.iso.x86_64.log"
|
||||
),
|
||||
with_jigdo=True,
|
||||
with_jigdo=False,
|
||||
)
|
||||
],
|
||||
)
|
||||
|
|
@ -374,7 +374,7 @@ class ExtraIsosThreadTest(helpers.PungiTestCase):
|
|||
log_file=os.path.join(
|
||||
self.topdir, "logs/x86_64/extraiso-my.iso.x86_64.log"
|
||||
),
|
||||
with_jigdo=True,
|
||||
with_jigdo=False,
|
||||
)
|
||||
],
|
||||
)
|
||||
|
|
@ -445,7 +445,7 @@ class ExtraIsosThreadTest(helpers.PungiTestCase):
|
|||
log_file=os.path.join(
|
||||
self.topdir, "logs/src/extraiso-my.iso.src.log"
|
||||
),
|
||||
with_jigdo=True,
|
||||
with_jigdo=False,
|
||||
)
|
||||
],
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue