mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 12:29:55 +00:00
bitbake: cookerdata/taskdata/runqueue: Drop remaining tryaltconfigs code and commandline option
I can't actually see how this was working, nothing connected the commandline option to the data in TaskData(). Drop the remaining pieces of this option, it was a relic from a decade ago and we want deterministic builds, not random tries until something might work. (Bitbake rev: 767c7ba8fc76ec667ac1567de1c971c3575f2ecd) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -1355,12 +1355,7 @@ class RunQueue:
|
||||
logger.info("Tasks Summary: Attempted %d tasks of which %d didn't need to be rerun and all succeeded.", self.rqexe.stats.completed, self.rqexe.stats.skipped)
|
||||
|
||||
if self.state is runQueueFailed:
|
||||
if not self.rqdata.taskData[''].tryaltconfigs:
|
||||
raise bb.runqueue.TaskFailure(self.rqexe.failed_tids)
|
||||
for tid in self.rqexe.failed_tids:
|
||||
(mc, fn, tn, _) = split_tid_mcfn(tid)
|
||||
self.rqdata.taskData[mc].fail_fn(fn)
|
||||
self.rqdata.reset()
|
||||
raise bb.runqueue.TaskFailure(self.rqexe.failed_tids)
|
||||
|
||||
if self.state is runQueueComplete:
|
||||
# All done
|
||||
|
||||
Reference in New Issue
Block a user