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

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

Issue 2137733002: Split arm and arm64 android trybots work directories. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Remove the bot from recipes. Created 4 years, 5 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 'buildername': 'Android x86 Builder (dbg)', 100 'buildername': 'Android x86 Builder (dbg)',
101 }, analyze_mode='compile'), 101 }, analyze_mode='compile'),
102 'android_compile_rel': simple_bot({ 102 'android_compile_rel': simple_bot({
103 'mastername': 'chromium.linux', 103 'mastername': 'chromium.linux',
104 'buildername': 'Android Builder', 104 'buildername': 'Android Builder',
105 }, analyze_mode='compile'), 105 }, analyze_mode='compile'),
106 'android_coverage': simple_bot({ 106 'android_coverage': simple_bot({
107 'mastername': 'chromium.fyi', 107 'mastername': 'chromium.fyi',
108 'buildername': 'Android Coverage (dbg)' 108 'buildername': 'Android Coverage (dbg)'
109 }), 109 }),
110 'android_swarming_rel': simple_bot({
111 'mastername': 'chromium.android',
112 'buildername': 'Android Swarm Builder',
113 }),
114 'android_n5x_swarming_rel': simple_bot({ 110 'android_n5x_swarming_rel': simple_bot({
115 'mastername': 'chromium.android', 111 'mastername': 'chromium.android',
116 'buildername': 'Android N5X Swarm Builder', 112 'buildername': 'Android N5X Swarm Builder',
117 }), 113 }),
118 'cast_shell_android': simple_bot({ 114 'cast_shell_android': simple_bot({
119 'mastername': 'chromium.linux', 115 'mastername': 'chromium.linux',
120 'buildername': 'Cast Android (dbg)', 116 'buildername': 'Cast Android (dbg)',
121 }), 117 }),
122 'linux_android_dbg_ng': simple_bot({ 118 'linux_android_dbg_ng': simple_bot({
123 'mastername': 'chromium.linux', 119 'mastername': 'chromium.linux',
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
578 'mastername': 'client.v8.fyi', 574 'mastername': 'client.v8.fyi',
579 'buildername': 'V8 Linux GN', 575 'buildername': 'V8 Linux GN',
580 }), 576 }),
581 'v8_android_chromium_gn_dbg': simple_bot({ 577 'v8_android_chromium_gn_dbg': simple_bot({
582 'mastername': 'client.v8.fyi', 578 'mastername': 'client.v8.fyi',
583 'buildername': 'V8 Android GN (dbg)', 579 'buildername': 'V8 Android GN (dbg)',
584 }), 580 }),
585 }, 581 },
586 }, 582 },
587 }) 583 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698