Lines Matching refs:trybots
115 """ Retrieve the list of known trybots from the build master, stripping
117 trybots = []
126 trybots.append(builder[:-len(TRYBOT_SUFFIX)])
127 return trybots
130 def ValidateArgs(argv, trybots, is_svn=True):
132 returns a tuple of (<changelist name>, <list of trybots>).
134 trybots: A list of the known try builders.
182 format_args = ['\n '.join(trybots)] + ALL_ALIASES
188 %s: Will run against all trybots.
189 %s: Will run against all compile trybots.
190 %s: Will run against the same trybots as the commit queue.
213 'trybots? [y,n]: ')
215 using_bots = trybots
217 using_bots = [t for t in trybots if t.startswith('Build')]
224 using_bots = [t for t in trybots if p.match(t)]
231 if not bot in trybots:
252 trybots.
294 trybots = RetrieveTrybotList(json_filename='trybots')
300 args = ValidateArgs(sys.argv[1:], trybots=trybots, is_svn=is_svn)