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

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

Issue 2184603003: Move memory FYI slaves to memory full master and switch configs over. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Update expectations Created 4 years, 4 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 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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 }, analyze_mode='compile'), 306 }, analyze_mode='compile'),
307 'chromeos_daisy_chromium_compile_only_ng': simple_bot({ 307 'chromeos_daisy_chromium_compile_only_ng': simple_bot({
308 'mastername': 'chromium.chromiumos', 308 'mastername': 'chromium.chromiumos',
309 'buildername': 'ChromiumOS daisy Compile', 309 'buildername': 'ChromiumOS daisy Compile',
310 }, analyze_mode='compile'), 310 }, analyze_mode='compile'),
311 'linux_chromium_chromeos_compile_rel_ng': simple_bot({ 311 'linux_chromium_chromeos_compile_rel_ng': simple_bot({
312 'mastername': 'chromium.chromiumos', 312 'mastername': 'chromium.chromiumos',
313 'buildername': 'Linux ChromiumOS Builder', 313 'buildername': 'Linux ChromiumOS Builder',
314 }, analyze_mode='compile'), 314 }, analyze_mode='compile'),
315 'linux_chromium_chromeos_msan_rel_ng': simple_bot({ 315 'linux_chromium_chromeos_msan_rel_ng': simple_bot({
316 'mastername': 'chromium.memory.fyi', 316 'mastername': 'chromium.memory.full',
317 'buildername': 'Chromium Linux ChromeOS MSan Builder', 317 'buildername': 'Chromium Linux ChromeOS MSan Builder',
318 'tester': 'Linux ChromeOS MSan Tests', 318 'tester': 'Linux ChromeOS MSan Tests',
319 }), 319 }),
320 'linux_chromium_chromeos_ozone_rel_ng': simple_bot({ 320 'linux_chromium_chromeos_ozone_rel_ng': simple_bot({
321 'mastername': 'chromium.chromiumos', 321 'mastername': 'chromium.chromiumos',
322 'buildername': 'Linux ChromiumOS Ozone Builder', 322 'buildername': 'Linux ChromiumOS Ozone Builder',
323 'tester': 'Linux ChromiumOS Ozone Tests (1)', 323 'tester': 'Linux ChromiumOS Ozone Tests (1)',
324 }), 324 }),
325 'linux_chromium_compile_dbg_32_ng': simple_bot({ 325 'linux_chromium_compile_dbg_32_ng': simple_bot({
326 'mastername': 'chromium.linux', 326 'mastername': 'chromium.linux',
327 'buildername': 'Linux Builder (dbg)(32)', 327 'buildername': 'Linux Builder (dbg)(32)',
328 }, analyze_mode='compile'), 328 }, analyze_mode='compile'),
329 'linux_chromium_msan_rel_ng': simple_bot({ 329 'linux_chromium_msan_rel_ng': simple_bot({
330 'mastername': 'chromium.memory.fyi', 330 'mastername': 'chromium.memory.full',
331 'buildername': 'Chromium Linux MSan Builder', 331 'buildername': 'Chromium Linux MSan Builder',
332 'tester': 'Linux MSan Tests', 332 'tester': 'Linux MSan Tests',
333 }), 333 }),
334 'linux_chromium_tsan_rel_ng': simple_bot({ 334 'linux_chromium_tsan_rel_ng': simple_bot({
335 'mastername': 'chromium.memory.fyi', 335 'mastername': 'chromium.memory.full',
336 'buildername': 'Chromium Linux TSan Builder', 336 'buildername': 'Chromium Linux TSan Builder',
337 'tester': 'Linux TSan Tests', 337 'tester': 'Linux TSan Tests',
338 }), 338 }),
339 'linux_chromium_cfi_rel_ng': simple_bot({ 339 'linux_chromium_cfi_rel_ng': simple_bot({
340 'mastername': 'chromium.fyi', 340 'mastername': 'chromium.fyi',
341 'buildername': 'CFI Linux', 341 'buildername': 'CFI Linux',
342 }), 342 }),
343 'linux_site_isolation': simple_bot({ 343 'linux_site_isolation': simple_bot({
344 'mastername': 'chromium.fyi', 344 'mastername': 'chromium.fyi',
345 'buildername': 'Site Isolation Linux', 345 'buildername': 'Site Isolation Linux',
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 'mastername': 'client.v8.fyi', 555 'mastername': 'client.v8.fyi',
556 'buildername': 'V8 Linux GN', 556 'buildername': 'V8 Linux GN',
557 }), 557 }),
558 'v8_android_chromium_gn_dbg': simple_bot({ 558 'v8_android_chromium_gn_dbg': simple_bot({
559 'mastername': 'client.v8.fyi', 559 'mastername': 'client.v8.fyi',
560 'buildername': 'V8 Android GN (dbg)', 560 'buildername': 'V8 Android GN (dbg)',
561 }), 561 }),
562 }, 562 },
563 }, 563 },
564 }) 564 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698