Traceback (most recent call last):
File "/usr/lib/python3.13/site-packages/pungi/scripts/pungi_koji.py", line 653, in cli_main
main()
~~~~^^
File "/usr/lib/python3.13/site-packages/pungi/scripts/pungi_koji.py", line 352, in main
run_compose(
~~~~~~~~~~~^
compose,
^^^^^^^^
...<2 lines>...
latest_link_components=latest_link_components,
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/lib/python3.13/site-packages/pungi/scripts/pungi_koji.py", line 523, in run_compose
extra_phase.stop()
~~~~~~~~~~~~~~~~^^
File "/usr/lib/python3.13/site-packages/pungi/phases/weaver.py", line 57, in stop
self.pool.stop()
~~~~~~~~~~~~~~^^
File "/usr/lib/python3.13/site-packages/kobo/threads.py", line 120, in stop
six.reraise(exc_info[0], exc_info[1], exc_info[2])
~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.13/site-packages/six.py", line 719, in reraise
raise value
File "/usr/lib/python3.13/site-packages/kobo/threads.py", line 67, in run
self.process(item, num)
~~~~~~~~~~~~^^^^^^^^^^^
File "/usr/lib/python3.13/site-packages/pungi/phases/weaver.py", line 79, in process
phase.stop()
~~~~~~~~~~^^
File "/usr/lib/python3.13/site-packages/pungi/phases/weaver.py", line 57, in stop
self.pool.stop()
~~~~~~~~~~~~~~^^
File "/usr/lib/python3.13/site-packages/kobo/threads.py", line 120, in stop
six.reraise(exc_info[0], exc_info[1], exc_info[2])
~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.13/site-packages/six.py", line 719, in reraise
raise value
File "/usr/lib/python3.13/site-packages/kobo/threads.py", line 67, in run
self.process(item, num)
~~~~~~~~~~~~^^^^^^^^^^^
File "/usr/lib/python3.13/site-packages/pungi/phases/weaver.py", line 79, in process
phase.stop()
~~~~~~~~~~^^
File "/usr/lib/python3.13/site-packages/pungi/phases/base.py", line 111, in stop
self.pool.stop()
~~~~~~~~~~~~~~^^
File "/usr/lib/python3.13/site-packages/kobo/threads.py", line 120, in stop
six.reraise(exc_info[0], exc_info[1], exc_info[2])
~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.13/site-packages/six.py", line 719, in reraise
raise value
File "/usr/lib/python3.13/site-packages/kobo/threads.py", line 67, in run
self.process(item, num)
~~~~~~~~~~~~^^^^^^^^^^^
File "/usr/lib/python3.13/site-packages/pungi/phases/kiwibuild.py", line 139, in process
self.worker(compose, variant, config, arches, generics, repo)
~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.13/site-packages/pungi/phases/kiwibuild.py", line 173, in worker
raise RuntimeError(
"kiwiBuild task failed: %s. See %s for details" % (task_id, log_file)
)
RuntimeError: kiwiBuild task failed: 130682414. See /mnt/koji/compose/cloud/Fedora-Cloud-40-20250324.0/logs/global/kiwibuild/Cloud-1-watch-task.log for details
Frame worker in /usr/lib/python3.13/site-packages/pungi/phases/kiwibuild.py at line 173
166 # Wait for it to finish and capture the output into log file.
167 log_dir = os.path.join(compose.paths.log.topdir(), "kiwibuild")
168 util.makedirs(log_dir)
169 log_file = os.path.join(
170 log_dir, "%s-%s-watch-task.log" % (variant.uid, self.num)
171 )
172 if koji.watch_task(task_id, log_file) != 0:
--> 173 raise RuntimeError(
174 "kiwiBuild task failed: %s. See %s for details" % (task_id, log_file)
175 )
176
177 # Refresh koji session which may have timed out while the task was
178 # running. Watching is done via a subprocess, so the session is
179 # inactive.
arches = ['aarch64', 'ppc64le', 's390x', 'x86_64']
compose =
config = {'description_scm': 'git+https://pagure.io/fedora-kiwi-descriptions.git?#f413a366afc391c07252f978ab89868673f0c3a9', 'description_path': 'Fedora.kiwi', 'kiwi_profile': 'Cloud-Base-Generic', 'arches': [
generics = {'release': '20250324.0', 'target': 'f40-kiwi', 'descscm': 'git+https://pagure.io/fedora-kiwi-descriptions.git?#f413a366afc391c07252f978ab89868673f0c3a9', 'descpath': 'Fedora.kiwi', 'type': None, 'typ
koji =
log_dir = '/mnt/koji/compose/cloud/Fedora-Cloud-40-20250324.0/logs/global/kiwibuild'
log_file = '/mnt/koji/compose/cloud/Fedora-Cloud-40-20250324.0/logs/global/kiwibuild/Cloud-1-watch-task.log'
msg = 'kiwibuild task for variant Cloud'
repo = ['https://kojipkgs.fedoraproject.org/compose/updates/f40-updates/compose/Everything/$arch/os/', 'https://kojipkgs.fedoraproject.org/compose/40/latest-Fedora-40/compose/Everything/$arch/os/']
self =
self._args =
self._daemonic = False
self._handle = <_thread._ThreadHandle object: ident=140469589767872>
self._ident = 140469589767872
self._initialized = True
self._kwargs = {}
self._name = 'Thread-54'
self._native_id = 3583964
self._started =
self._stderr = <_io.TextIOWrapper name='' mode='w' encoding='utf-8'>
self._target = None
self.daemon = False
self.failable_arches = ['ppc64le', 's390x']
self.failed = True
self.get_timeout = 1
self.ident = 140469589767872
self.kill = True
self.name = 'Thread-54'
self.native_id = 3583964
self.num = 1
self.pool =
self.running = False
task_id = 130682414
variant = Variant(id="Cloud", name="Cloud", type="variant", parent=None)
Frame process in /usr/lib/python3.13/site-packages/pungi/phases/kiwibuild.py at line 139
132 compose,
133 can_task_fail,
134 variant,
135 "*",
136 "kiwibuild",
137 logger=self.pool._logger,
138 ):
--> 139 self.worker(compose, variant, config, arches, generics, repo)
140
141 def worker(self, compose, variant, config, arches, generics, repo):
142 msg = "kiwibuild task for variant %s" % variant.uid
143 self.pool.log_info("[BEGIN] %s" % msg)
144 koji = kojiwrapper.KojiWrapper(compose)
145 koji.login()
arches = ['aarch64', 'ppc64le', 's390x', 'x86_64']
can_task_fail = False
compose =
config = {'description_scm': 'git+https://pagure.io/fedora-kiwi-descriptions.git?#f413a366afc391c07252f978ab89868673f0c3a9', 'description_path': 'Fedora.kiwi', 'kiwi_profile': 'Cloud-Base-Generic', 'arches': [
failable_arches = ['ppc64le', 's390x']
generics = {'release': '20250324.0', 'target': 'f40-kiwi', 'descscm': 'git+https://pagure.io/fedora-kiwi-descriptions.git?#f413a366afc391c07252f978ab89868673f0c3a9', 'descpath': 'Fedora.kiwi', 'type': None, 'typ
item =
num = 1
repo = ['https://kojipkgs.fedoraproject.org/compose/updates/f40-updates/compose/Everything/$arch/os/', 'https://kojipkgs.fedoraproject.org/compose/40/latest-Fedora-40/compose/Everything/$arch/os/']
self =
self._args =
self._daemonic = False
self._handle = <_thread._ThreadHandle object: ident=140469589767872>
self._ident = 140469589767872
self._initialized = True
self._kwargs = {}
self._name = 'Thread-54'
self._native_id = 3583964
self._started =
self._stderr = <_io.TextIOWrapper name='' mode='w' encoding='utf-8'>
self._target = None
self.daemon = False
self.failable_arches = ['ppc64le', 's390x']
self.failed = True
self.get_timeout = 1
self.ident = 140469589767872
self.kill = True
self.name = 'Thread-54'
self.native_id = 3583964
self.num = 1
self.pool =
self.running = False
variant = Variant(id="Cloud", name="Cloud", type="variant", parent=None)
Frame run in /usr/lib/python3.13/site-packages/kobo/threads.py at line 67
60
61 self.pool.queue_get_lock.acquire()
62 self.pool.queue_processed += 1
63 num = self.pool.queue_processed
64 self.pool.queue_get_lock.release()
65
66 try:
--> 67 self.process(item, num)
68 except:
69 self.failed = True
70 self.pool.exceptions.append(sys.exc_info())
71 self.pool.kill()
72
73 def process(self, item, num):
item =
num = 1
self =
self._args =
self._daemonic = False
self._handle = <_thread._ThreadHandle object: ident=140469589767872>
self._ident = 140469589767872
self._initialized = True
self._kwargs = {}
self._name = 'Thread-54'
self._native_id = 3583964
self._started =
self._stderr = <_io.TextIOWrapper name='' mode='w' encoding='utf-8'>
self._target = None
self.daemon = False
self.failable_arches = ['ppc64le', 's390x']
self.failed = True
self.get_timeout = 1
self.ident = 140469589767872
self.kill = True
self.name = 'Thread-54'
self.native_id = 3583964
self.num = 1
self.pool =
self.running = False
Frame reraise in /usr/lib/python3.13/site-packages/six.py at line 719
712
713 def reraise(tp, value, tb=None):
714 try:
715 if value is None:
716 value = tp()
717 if value.__traceback__ is not tb:
718 raise value.with_traceback(tb)
--> 719 raise value
720 finally:
721 value = None
722 tb = None
723
724 else:
725 def exec_(_code_, _globs_=None, _locs_=None):
tb = None
tp =
value = None
Frame stop in /usr/lib/python3.13/site-packages/kobo/threads.py at line 120
113 """
114 for i in self.threads:
115 i.running = False
116 for i in self.threads:
117 i.join()
118 if self.exceptions:
119 exc_info = self.exceptions[0]
--> 120 six.reraise(exc_info[0], exc_info[1], exc_info[2])
121
122 def kill(self):
123 for i in self.threads:
124 i.kill = True
125 i.running = False
126
exc_info =
i =
self =
self._logger =
self.exceptions = [(, RuntimeError('kiwiBuild task failed: 130682414. See /mnt/koji/compose/cloud/Fedora-Cloud-40-20250324.0/logs/global/kiwibuild/Cloud-1-watch-task.log for details'),
self.queue_get_lock =
self.queue_processed = 7
self.queue_put_lock =
self.queue_total = 7
self.threads = [, , ,
Frame stop in /usr/lib/python3.13/site-packages/pungi/phases/base.py at line 111
104 "Note that variants can be excluded in configuration file"
105 )
106
107 def stop(self):
108 if self.finished:
109 return
110 if hasattr(self, "pool"):
--> 111 self.pool.stop()
112 self.finished = True
113 self.compose.log_info("[DONE ] %s" % self.msg)
114
115 if hasattr(self, "_start_time"):
116 self.compose.log_info(
117 "PHASE %s took %d seconds"
self =
self._skipped = False
self._start_time = 1742804113.2126284
self.compose =
self.finished = False
self.logger =
self.msg = '---------- PHASE: KIWIBUILD ----------'
self.name = 'kiwibuild'
self.pool =
self.used_patterns = {'^Cloud$'}
Frame process in /usr/lib/python3.13/site-packages/pungi/phases/weaver.py at line 79
72 self.pool.queue_total,
73 phases_names,
74 )
75 self.pool.log_info("[BEGIN] %s" % (msg,))
76
77 for phase in pipeline:
78 phase.start()
--> 79 phase.stop()
80
81 self.pool.log_info("[DONE ] %s" % (msg,))
item = []
msg = 'Running pipeline (6/6). Phases: kiwibuild'
num = 6
phase =
phases_names = 'kiwibuild'
pipeline = []
self =
self._args =
self._daemonic = False
self._handle = <_thread._ThreadHandle object: ident=140470076081856>
self._ident = 140470076081856
self._initialized = True
self._kwargs = {}
self._name = 'Thread-50'
self._native_id = 3583942
self._started =
self._stderr = <_io.TextIOWrapper name='' mode='w' encoding='utf-8'>
self._target = None
self.daemon = False
self.failed = True
self.get_timeout = 1
self.ident = 140470076081856
self.kill = True
self.name = 'Thread-50'
self.native_id = 3583942
self.pool =
self.running = False
Frame run in /usr/lib/python3.13/site-packages/kobo/threads.py at line 67
60
61 self.pool.queue_get_lock.acquire()
62 self.pool.queue_processed += 1
63 num = self.pool.queue_processed
64 self.pool.queue_get_lock.release()
65
66 try:
--> 67 self.process(item, num)
68 except:
69 self.failed = True
70 self.pool.exceptions.append(sys.exc_info())
71 self.pool.kill()
72
73 def process(self, item, num):
item = []
num = 6
self =
self._args =
self._daemonic = False
self._handle = <_thread._ThreadHandle object: ident=140470076081856>
self._ident = 140470076081856
self._initialized = True
self._kwargs = {}
self._name = 'Thread-50'
self._native_id = 3583942
self._started =
self._stderr = <_io.TextIOWrapper name='' mode='w' encoding='utf-8'>
self._target = None
self.daemon = False
self.failed = True
self.get_timeout = 1
self.ident = 140470076081856
self.kill = True
self.name = 'Thread-50'
self.native_id = 3583942
self.pool =
self.running = False
Frame reraise in /usr/lib/python3.13/site-packages/six.py at line 719
712
713 def reraise(tp, value, tb=None):
714 try:
715 if value is None:
716 value = tp()
717 if value.__traceback__ is not tb:
718 raise value.with_traceback(tb)
--> 719 raise value
720 finally:
721 value = None
722 tb = None
723
724 else:
725 def exec_(_code_, _globs_=None, _locs_=None):
tb = None
tp =
value = None
Frame stop in /usr/lib/python3.13/site-packages/kobo/threads.py at line 120
113 """
114 for i in self.threads:
115 i.running = False
116 for i in self.threads:
117 i.join()
118 if self.exceptions:
119 exc_info = self.exceptions[0]
--> 120 six.reraise(exc_info[0], exc_info[1], exc_info[2])
121
122 def kill(self):
123 for i in self.threads:
124 i.kill = True
125 i.running = False
126
exc_info =
i =
self =
self._logger =
self.exceptions = [(, RuntimeError('kiwiBuild task failed: 130682414. See /mnt/koji/compose/cloud/Fedora-Cloud-40-20250324.0/logs/global/kiwibuild/Cloud-1-watch-task.log for details'),
self.queue_get_lock =
self.queue_processed = 6
self.queue_put_lock =
self.queue_total = 6
self.threads = [, , ,
Frame stop in /usr/lib/python3.13/site-packages/pungi/phases/weaver.py at line 57
50
51 self.pool.start()
52
53 def stop(self):
54 if self.finished:
55 return
56 if hasattr(self, "pool"):
--> 57 self.pool.stop()
58 self.finished = True
59 self.compose.log_info("[DONE ] %s" % self.msg)
60
61
62 class PipelineThread(WorkerThread):
63 """
self =
self._phases_schema =
self.compose =
self.finished = False
self.msg = '---------- PHASE: WEAVER ----------'
self.name = 'weaver'
self.pool =
Frame process in /usr/lib/python3.13/site-packages/pungi/phases/weaver.py at line 79
72 self.pool.queue_total,
73 phases_names,
74 )
75 self.pool.log_info("[BEGIN] %s" % (msg,))
76
77 for phase in pipeline:
78 phase.start()
--> 79 phase.stop()
80
81 self.pool.log_info("[DONE ] %s" % (msg,))
item = [, ]
msg = 'Running pipeline (1/3). Phases: weaver, image_container'
num = 1
phase =
phases_names = 'weaver, image_container'
pipeline = [, ]
self =
self._args =
self._daemonic = False
self._handle = <_thread._ThreadHandle object: ident=140469572982464>
self._ident = 140469572982464
self._initialized = True
self._kwargs = {}
self._name = 'Thread-42'
self._native_id = 3583934
self._started =
self._stderr = <_io.TextIOWrapper name='' mode='w' encoding='utf-8'>
self._target = None
self.daemon = False
self.failed = True
self.get_timeout = 1
self.ident = 140469572982464
self.kill = True
self.name = 'Thread-42'
self.native_id = 3583934
self.pool =
self.running = False
Frame run in /usr/lib/python3.13/site-packages/kobo/threads.py at line 67
60
61 self.pool.queue_get_lock.acquire()
62 self.pool.queue_processed += 1
63 num = self.pool.queue_processed
64 self.pool.queue_get_lock.release()
65
66 try:
--> 67 self.process(item, num)
68 except:
69 self.failed = True
70 self.pool.exceptions.append(sys.exc_info())
71 self.pool.kill()
72
73 def process(self, item, num):
item = [, ]
num = 1
self =
self._args =
self._daemonic = False
self._handle = <_thread._ThreadHandle object: ident=140469572982464>
self._ident = 140469572982464
self._initialized = True
self._kwargs = {}
self._name = 'Thread-42'
self._native_id = 3583934
self._started =
self._stderr = <_io.TextIOWrapper name='' mode='w' encoding='utf-8'>
self._target = None
self.daemon = False
self.failed = True
self.get_timeout = 1
self.ident = 140469572982464
self.kill = True
self.name = 'Thread-42'
self.native_id = 3583934
self.pool =
self.running = False
Frame reraise in /usr/lib/python3.13/site-packages/six.py at line 719
712
713 def reraise(tp, value, tb=None):
714 try:
715 if value is None:
716 value = tp()
717 if value.__traceback__ is not tb:
718 raise value.with_traceback(tb)
--> 719 raise value
720 finally:
721 value = None
722 tb = None
723
724 else:
725 def exec_(_code_, _globs_=None, _locs_=None):
tb = None
tp =
value = None
Frame stop in /usr/lib/python3.13/site-packages/kobo/threads.py at line 120
113 """
114 for i in self.threads:
115 i.running = False
116 for i in self.threads:
117 i.join()
118 if self.exceptions:
119 exc_info = self.exceptions[0]
--> 120 six.reraise(exc_info[0], exc_info[1], exc_info[2])
121
122 def kill(self):
123 for i in self.threads:
124 i.kill = True
125 i.running = False
126
exc_info =
i =
self =
self._logger =
self.exceptions = [(, RuntimeError('kiwiBuild task failed: 130682414. See /mnt/koji/compose/cloud/Fedora-Cloud-40-20250324.0/logs/global/kiwibuild/Cloud-1-watch-task.log for details'),
self.queue_get_lock =
self.queue_processed = 3
self.queue_put_lock =
self.queue_total = 3
self.threads = [, , ]
Frame stop in /usr/lib/python3.13/site-packages/pungi/phases/weaver.py at line 57
50
51 self.pool.start()
52
53 def stop(self):
54 if self.finished:
55 return
56 if hasattr(self, "pool"):
--> 57 self.pool.stop()
58 self.finished = True
59 self.compose.log_info("[DONE ] %s" % self.msg)
60
61
62 class PipelineThread(WorkerThread):
63 """
self =
self._phases_schema =
self.compose =
self.finished = False
self.msg = '---------- PHASE: WEAVER ----------'
self.name = 'weaver'
self.pool =
Frame run_compose in /usr/lib/python3.13/site-packages/pungi/scripts/pungi_koji.py at line 523
516 (compose_images_phase, image_container_phase),
517 osbs_phase,
518 repoclosure_phase,
519 )
520 extra_phase = pungi.phases.WeaverPhase(compose, extra_phase_schema)
521
522 extra_phase.start()
--> 523 extra_phase.stop()
524 finally:
525 # wait for ostree phase here too - it can happily run in parallel with
526 # all of the other stuff, but we must ensure it always gets stopped
527 ostree_phase.stop()
528
529 # now we do checksums as all images are done
arch = 'src'
buildinstall_phase =
compose =
compose_images_phase =
compose_images_schema =
config_copy_path = '/mnt/koji/compose/cloud/Fedora-Cloud-40-20250324.0/logs/global/config-copy'
config_dump_full = '/mnt/koji/compose/cloud/Fedora-Cloud-40-20250324.0/logs/global/config-dump.global.log'
config_file = '/tmp/CloudF40.FHpx0A/pungi-fedora/multilib.conf'
create_latest_link = True
createiso_phase =
createrepo_phase =
errors = []
essentials_phase =
essentials_schema =
extra_isos_phase =
extra_phase =
extra_phase_schema =
extrafiles_phase =
f = <_io.TextIOWrapper name='/mnt/koji/compose/cloud/Fedora-Cloud-40-20250324.0/logs/global/config-dump.global.log' mode='w' encoding='utf-8'>
gather_phase =
image_build_phase =
image_checksum_phase =
image_container_phase =
init_phase =
installed_pkgs_log = '/mnt/koji/compose/cloud/Fedora-Cloud-40-20250324.0/logs/global/installed-pkgs.global.log'
kiwibuild_phase =
latest_link_components = -1
latest_link_status = None
livemedia_phase =
osbs_phase =
osbuild_phase =
ostree_container_phase =
ostree_installer_phase =
ostree_phase =
ostree_schema =
phase =
pkgset_phase =
pungi =
repoclosure_phase =
test_phase =
variant = Variant(id="Cloud", name="Cloud", type="variant", parent=None)
Frame main in /usr/lib/python3.13/site-packages/pungi/scripts/pungi_koji.py at line 352
345 logger.error("Config validation failed with the error: %s" % error)
346 fail_to_start("Config validation failed", errors=errors)
347 sys.exit(1)
348
349 notifier.compose = compose
350 COMPOSE = compose
351 try:
--> 352 run_compose(
353 compose,
354 create_latest_link=create_latest_link,
355 latest_link_status=latest_link_status,
356 latest_link_components=latest_link_components,
357 )
358 except UnsignedPackagesError:
Compose =
PHASES_NAMES_MODIFIED = ['buildinstall', 'createiso', 'createrepo', 'extra_files', 'extra_isos', 'gather', 'image_build', 'image_checksum', 'image_container', 'init', 'kiwibuild', 'live_media', 'osbs', 'osbuild', 'ostree_con
abort = .abort at 0x7fc1c030b240>
compose =
compose_dir = '/mnt/koji/compose/cloud/Fedora-Cloud-40-20250324.0'
compose_type = 'production'
conf = {'variants_file': 'variants-fedora.xml', 'tree_arches': ['aarch64', 'ppc64le', 's390x', 'x86_64'], 'hashed_directories': True, 'runroot_channel': 'compose', 'runroot_tag': 'f40-build', 'pkgset_source'
create_latest_link = True
errors = []
fail_to_start = .fail_to_start at 0x7fc1c030b100>
group =
kobo =
latest_link_components = -1
latest_link_status = None
logger =
notifier =
opts = Namespace(target_dir='/mnt/koji/compose/cloud', compose_dir=None, label='RC-20250324.0', no_label=False, supported=False, old_composes=['/mnt/koji/compose/cloud'], config='/tmp/CloudF40.FHpx0A/pungi-f
parser = ArgumentParser(prog='pungi-koji', usage=None, description=None, formatter_class=, conflict_handler='error', add_help=True)
productmd =
pungi =
rv = None
warnings = []
Frame cli_main in /usr/lib/python3.13/site-packages/pungi/scripts/pungi_koji.py at line 653
646
647
648 def cli_main():
649 signal.signal(signal.SIGINT, sigterm_handler)
650 signal.signal(signal.SIGTERM, sigterm_handler)
651
652 try:
--> 653 main()
654 except (Exception, KeyboardInterrupt) as ex:
655 if COMPOSE:
656 COMPOSE.log_error("Compose run failed: %s" % ex)
657 COMPOSE.traceback(show_locals=getattr(ex, "show_locals", True))
658 COMPOSE.log_critical("Compose failed: %s" % COMPOSE.topdir)
659 COMPOSE.write_status("DOOMED")
ex = RuntimeError('kiwiBuild task failed: 130682414. See /mnt/koji/compose/cloud/Fedora-Cloud-40-20250324.0/logs/global/kiwibuild/Cloud-1-watch-task.log for details')