Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(673)

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/trybots.py

Issue 1554383003: Add support for "additional_mirrors" property in trybot configs. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 TRYBOTS = freeze({ 8 TRYBOTS = freeze({
9 'tryserver.blink': { 9 'tryserver.blink': {
10 'builders': { 10 'builders': {
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 'buildername': 'Linux ChromiumOS GN (dbg)', 260 'buildername': 'Linux ChromiumOS GN (dbg)',
261 }, 261 },
262 'linux_chromium_gn_chromeos_rel': { 262 'linux_chromium_gn_chromeos_rel': {
263 'mastername': 'chromium.chromiumos', 263 'mastername': 'chromium.chromiumos',
264 'buildername': 'Linux ChromiumOS GN', 264 'buildername': 'Linux ChromiumOS GN',
265 }, 265 },
266 'linux_chromium_rel_ng': { 266 'linux_chromium_rel_ng': {
267 'mastername': 'chromium.linux', 267 'mastername': 'chromium.linux',
268 'buildername': 'Linux Builder', 268 'buildername': 'Linux Builder',
269 'tester': 'Linux Tests', 269 'tester': 'Linux Tests',
270 # TODO(kbr): add this to the other trybots that run GPU tests.
271 # This is only being added now in order to achieve full code
272 # coverage in the recipes.
273 'additional_mirrors': [
Sergey Berezin 2016/01/06 01:50:56 nit on the design: it might make sense to generali
Ken Russell (switch to Gerrit) 2016/01/06 03:30:07 That's certainly feasible. I don't know whether it
Sergey Berezin 2016/01/06 19:12:35 To be clear, what I'm proposing is backward-compat
274 {
275 'mastername': 'chromium.gpu',
276 'buildername': 'GPU Linux Builder',
277 'tester': 'Linux Release (NVIDIA)',
278 },
279 ],
270 }, 280 },
271 'linux_chromium_asan_rel_ng': { 281 'linux_chromium_asan_rel_ng': {
272 'mastername': 'chromium.memory', 282 'mastername': 'chromium.memory',
273 'buildername': 'Linux ASan LSan Builder', 283 'buildername': 'Linux ASan LSan Builder',
274 'tester': 'Linux ASan LSan Tests (1)', 284 'tester': 'Linux ASan LSan Tests (1)',
275 }, 285 },
276 'linux_chromium_compile_dbg_ng': { 286 'linux_chromium_compile_dbg_ng': {
277 'mastername': 'chromium.linux', 287 'mastername': 'chromium.linux',
278 'buildername': 'Linux Builder (dbg)', 288 'buildername': 'Linux Builder (dbg)',
279 'analyze_mode': 'compile', 289 'analyze_mode': 'compile',
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 'buildername': 'CrWinClang64', 535 'buildername': 'CrWinClang64',
526 }, 536 },
527 # Optional GPU bots. 537 # Optional GPU bots.
528 'win_optional_gpu_tests_rel': { 538 'win_optional_gpu_tests_rel': {
529 'mastername': 'chromium.win', 539 'mastername': 'chromium.win',
530 'buildername': 'Win Builder', 540 'buildername': 'Win Builder',
531 }, 541 },
532 }, 542 },
533 }, 543 },
534 }) 544 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698