Fixing builder tags assignment
This commit is contained in:
parent
87af29fa81
commit
2446739b5e
1 changed files with 3 additions and 2 deletions
|
@ -387,7 +387,7 @@ mn = mail.MailNotifier(fromaddr = GDB_MAIL_FROM,
|
|||
extraRecipients = [ GDB_MAIL_TO ],
|
||||
mode = ('failing'),
|
||||
messageFormatter = MessageGDBTesters,
|
||||
tags = [ "MAIL" ],
|
||||
tags = [ "MggggAIL" ],
|
||||
extraHeaders = { 'X-GDB-Buildbot' : '1',
|
||||
'In-Reply-To' : WithProperties ("<%s@gdb-build>",
|
||||
'got_revision') })
|
||||
|
@ -912,8 +912,9 @@ def load_config (c):
|
|||
b['canStartBuild'] = DefaultGDBCanStartBuild
|
||||
b['mergeRequests'] = False
|
||||
|
||||
mytags = b.pop ('tags')
|
||||
b['tags'] = []
|
||||
for t in b['tags']:
|
||||
for t in mytags:
|
||||
b['tags'].append (t)
|
||||
|
||||
# AIX hack. Sigh...
|
||||
|
|
Loading…
Reference in a new issue