3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-08-21 04:10:27 +00:00

Store task name in task and statusdb

This commit is contained in:
Krystine Sherwin 2025-07-08 15:47:31 +12:00
parent de59dcc9c4
commit f63cd46d12
No known key found for this signature in database
3 changed files with 9 additions and 7 deletions

View file

@ -825,12 +825,13 @@ class SbySummary:
class SbyTask(SbyConfig):
def __init__(self, sbyconfig, workdir, early_logs, reusedir, taskloop=None, logfile=None):
def __init__(self, sbyconfig, workdir, early_logs, reusedir, taskloop=None, logfile=None, name=None):
super().__init__()
self.used_options = set()
self.models = dict()
self.workdir = workdir
self.reusedir = reusedir
self.name = name
self.status = "UNKNOWN"
self.total_time = 0
self.expect = list()