Including full build URL in the email
This commit is contained in:
parent
97dc582e04
commit
2fc71f839d
1 changed files with 6 additions and 2 deletions
|
@ -136,6 +136,10 @@ send to the gdb-testers mailing list."""
|
|||
text += "Buildslave:\n"
|
||||
text += "\t%s\n" % build.getSlavename ()
|
||||
|
||||
# Including the link for the full build
|
||||
text += "Full Build URL:\n"
|
||||
text += "\t<%s>\n" % master_status.getURLForThing (build)
|
||||
|
||||
# Commits that were tested. Usually we should be dealing with
|
||||
# only one commit
|
||||
text += "Commit(s) tested:\n"
|
||||
|
@ -186,7 +190,7 @@ send to the gdb-testers mailing list."""
|
|||
# We do not want to break here, because if this step
|
||||
# fails the test will continue.
|
||||
text += "*** Failed to make TAGS ***\n"
|
||||
text += "Log URL: %s/steps/%s/logs/%s\n\n" % (master_status.getURLForThing (build),
|
||||
text += "Log URL: <%s/steps/%s/logs/%s>\n\n" % (master_status.getURLForThing (build),
|
||||
quote (n), quote (log.getName ()))
|
||||
continue
|
||||
elif n == 'regressions' and log.getName () == 'regressions':
|
||||
|
|
Loading…
Reference in a new issue