Improving fetching of commit ID
This commit is contained in:
parent
ca5926ced8
commit
1519a40808
1 changed files with 5 additions and 3 deletions
|
@ -146,9 +146,11 @@ send to the gdb-testers mailing list."""
|
|||
# URL to find more info about what went wrong.
|
||||
text += "Log URL(s):\n"
|
||||
for ss in ss_list:
|
||||
text += "\t<%s/%s/.git/tree/?id=%s>\n" % (git_url, name,
|
||||
get_builder_commit_id (name,
|
||||
ss.revision))
|
||||
commit_id = get_builder_commit_id (name, ss.revision)
|
||||
if commit_id:
|
||||
text += "\t<%s/%s/.git/tree/?id=%s>\n" % (git_url, name, commit_id)
|
||||
else:
|
||||
text += "\t<Error fetching commit ID for %s>\n" % ss.revision
|
||||
# text += "\t<%s/%s/.git/log/?qt=grep&q=%s>\n" % (git_url, name, ss.revision)
|
||||
# text += "\t<%sresults/%s/%s>\n" % (master_status.getBuildbotURL (), name, ss.revision)
|
||||
|
||||
|
|
Loading…
Reference in a new issue