Skip to content

Commit

Permalink
added message for no job run
Browse files Browse the repository at this point in the history
  • Loading branch information
alokgoswami-ag committed Jan 7, 2025
1 parent b77856e commit 05ce8d6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CI_DailyBuildUpdates.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ def main():
for ci_name,ci_link in config_data.items():
build_list = monitor.get_jobs(ci_link)
summary_list.extend(monitor.get_brief_job_info(build_list,ci_name,zone=args.zone))
if len(summary_list)==0:
print("*************** No Latest jobs build *********************************")
print(tabulate(summary_list, headers='keys', tablefmt="pipe", stralign='left'))
elif args.info_type == "detailed":
for ci_name,ci_link in config_data.items():
Expand Down

0 comments on commit 05ce8d6

Please sign in to comment.