OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 from recipe_engine.types import freeze | 5 from recipe_engine.types import freeze |
6 | 6 |
7 | 7 |
8 def simple_bot(bot_id, analyze_mode=None): | 8 def simple_bot(bot_id, analyze_mode=None): |
9 return { | 9 return { |
10 'bot_ids': [bot_id], | 10 'bot_ids': [bot_id], |
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 }, analyze_mode='compile'), | 313 }, analyze_mode='compile'), |
314 'linux_chromium_archive_rel_32_ng': simple_bot({ | 314 'linux_chromium_archive_rel_32_ng': simple_bot({ |
315 'mastername': 'chromium', | 315 'mastername': 'chromium', |
316 'buildername': 'Linux', | 316 'buildername': 'Linux', |
317 }), | 317 }), |
318 'linux_chromium_archive_rel_ng': simple_bot({ | 318 'linux_chromium_archive_rel_ng': simple_bot({ |
319 'mastername': 'chromium', | 319 'mastername': 'chromium', |
320 'buildername': 'Linux x64', | 320 'buildername': 'Linux x64', |
321 }), | 321 }), |
322 'linux_chromium_clobber_rel_ng': simple_bot({ | 322 'linux_chromium_clobber_rel_ng': simple_bot({ |
323 'mastername': 'chromium.fyi', | 323 'mastername': 'chromium', |
324 'buildername': 'Linux Builder (clobber)', | 324 'buildername': 'Linux x64', |
325 }, analyze_mode='compile'), | 325 }, analyze_mode='compile'), |
326 'linux_chromium_chromeos_dbg_ng': simple_bot({ | 326 'linux_chromium_chromeos_dbg_ng': simple_bot({ |
327 'mastername': 'chromium.chromiumos', | 327 'mastername': 'chromium.chromiumos', |
328 'buildername': 'Linux ChromiumOS Builder (dbg)', | 328 'buildername': 'Linux ChromiumOS Builder (dbg)', |
329 'tester': 'Linux ChromiumOS Tests (dbg)(1)', | 329 'tester': 'Linux ChromiumOS Tests (dbg)(1)', |
330 }), | 330 }), |
331 'linux_chromium_chromeos_compile_dbg_ng': simple_bot({ | 331 'linux_chromium_chromeos_compile_dbg_ng': simple_bot({ |
332 'mastername': 'chromium.chromiumos', | 332 'mastername': 'chromium.chromiumos', |
333 'buildername': 'Linux ChromiumOS Builder (dbg)', | 333 'buildername': 'Linux ChromiumOS Builder (dbg)', |
334 }, analyze_mode='compile'), | 334 }, analyze_mode='compile'), |
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
636 }, | 636 }, |
637 'tryserver.v8': { | 637 'tryserver.v8': { |
638 'builders': { | 638 'builders': { |
639 'v8_linux_blink_rel': simple_bot({ | 639 'v8_linux_blink_rel': simple_bot({ |
640 'mastername': 'chromium.webkit', | 640 'mastername': 'chromium.webkit', |
641 'buildername': 'WebKit Linux', | 641 'buildername': 'WebKit Linux', |
642 }), | 642 }), |
643 }, | 643 }, |
644 }, | 644 }, |
645 }) | 645 }) |
OLD | NEW |