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

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

Issue 1574433004: Allow a single trybot to mirror multiple waterfall bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@bot-config-and-test-db
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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 'tester': 'Linux Tests (dbg)(1)', 256 'tester': 'Linux Tests (dbg)(1)',
257 }, 257 },
258 'linux_chromium_gn_chromeos_dbg': { 258 'linux_chromium_gn_chromeos_dbg': {
259 'mastername': 'chromium.chromiumos', 259 'mastername': 'chromium.chromiumos',
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': [
Paweł Hajdan Jr. 2016/01/11 18:41:11 Whoa - can we experiment with an experimental buil
Ken Russell (switch to Gerrit) 2016/01/11 22:54:01 Sure, that'd be fine, though I think some test exp
Sergey Berezin 2016/01/12 01:44:23 +1 to Pawel's concern - let's not mess with a prod
Ken Russell (switch to Gerrit) 2016/01/12 05:35:51 OK. Agree it's much better to get the entire syste
267 'mastername': 'chromium.linux', 267 {
268 'buildername': 'Linux Builder', 268 'mastername': 'chromium.linux',
269 'tester': 'Linux Tests', 269 'buildername': 'Linux Builder',
270 }, 270 'tester': 'Linux Tests',
271 },
272 {
273 'mastername': 'chromium.gpu',
274 'buildername': 'GPU Fake Linux Builder',
275 'tester': 'Fake Linux Release (NVIDIA)',
276 },
277 ],
271 'linux_chromium_asan_rel_ng': { 278 'linux_chromium_asan_rel_ng': {
272 'mastername': 'chromium.memory', 279 'mastername': 'chromium.memory',
273 'buildername': 'Linux ASan LSan Builder', 280 'buildername': 'Linux ASan LSan Builder',
274 'tester': 'Linux ASan LSan Tests (1)', 281 'tester': 'Linux ASan LSan Tests (1)',
275 }, 282 },
276 'linux_chromium_compile_dbg_ng': { 283 'linux_chromium_compile_dbg_ng': {
277 'mastername': 'chromium.linux', 284 'mastername': 'chromium.linux',
278 'buildername': 'Linux Builder (dbg)', 285 'buildername': 'Linux Builder (dbg)',
279 'analyze_mode': 'compile', 286 'analyze_mode': 'compile',
280 }, 287 },
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 'buildername': 'CrWinClang64', 532 'buildername': 'CrWinClang64',
526 }, 533 },
527 # Optional GPU bots. 534 # Optional GPU bots.
528 'win_optional_gpu_tests_rel': { 535 'win_optional_gpu_tests_rel': {
529 'mastername': 'chromium.win', 536 'mastername': 'chromium.win',
530 'buildername': 'Win Builder', 537 'buildername': 'Win Builder',
531 }, 538 },
532 }, 539 },
533 }, 540 },
534 }) 541 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698