3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 06:04:06 +00:00

Better error message when tasks failed

This commit is contained in:
piegames 2021-06-25 00:03:05 +02:00
parent 2d7d48885b
commit 874d13ff89

View file

@ -423,12 +423,16 @@ def run_job(taskname):
return job.retcode
failed = []
retcode = 0
for t in tasknames:
retcode |= run_job(t)
for task in tasknames:
task_retcode = run_job(task)
retcode |= task_retcode
if task_retcode:
failed.append(task)
if retcode and (len(tasknames) > 1 or tasknames[0] is not None):
if failed and (len(tasknames) > 1 or tasknames[0] is not None):
tm = localtime()
print("SBY {:2d}:{:02d}:{:02d} One or more tasks produced a non-zero return code.".format(tm.tm_hour, tm.tm_min, tm.tm_sec))
print("SBY {:2d}:{:02d}:{:02d} The following tasks failed: {}".format(tm.tm_hour, tm.tm_min, tm.tm_sec, failed))
sys.exit(retcode)