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

Side by Side Diff: scripts/slave/recipes/chromium_trybot.py

Issue 1158703005: Add Linux ARM builder to main waterfall (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 6 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 infra.libs.infra_types import freeze 5 from infra.libs.infra_types import freeze
6 6
7 DEPS = [ 7 DEPS = [
8 'bot_update', 8 'bot_update',
9 'chromium', 9 'chromium',
10 'chromium_android', 10 'chromium_android',
(...skipping 20 matching lines...) Expand all
31 'builders': { 31 'builders': {
32 'linux_blink_rel_ng': { 32 'linux_blink_rel_ng': {
33 'mastername': 'chromium.webkit', 33 'mastername': 'chromium.webkit',
34 'buildername': 'WebKit Linux', 34 'buildername': 'WebKit Linux',
35 }, 35 },
36 }, 36 },
37 }, 37 },
38 'tryserver.chromium.linux': { 38 'tryserver.chromium.linux': {
39 'builders': { 39 'builders': {
40 'linux_arm_compile': { 40 'linux_arm_compile': {
41 'mastername': 'chromium.fyi', 41 'mastername': 'chromium.linux',
42 'buildername': 'Linux ARM', 42 'buildername': 'Linux ARM',
43 }, 43 },
44 'android_arm64_dbg_recipe': { 44 'android_arm64_dbg_recipe': {
45 'mastername': 'chromium.linux', 45 'mastername': 'chromium.linux',
46 'buildername': 'Android Arm64 Builder (dbg)', 46 'buildername': 'Android Arm64 Builder (dbg)',
47 }, 47 },
48 'android_clang_dbg_recipe': { 48 'android_clang_dbg_recipe': {
49 'mastername': 'chromium.linux', 49 'mastername': 'chromium.linux',
50 'buildername': 'Android Clang Builder (dbg)', 50 'buildername': 'Android Clang Builder (dbg)',
51 }, 51 },
(...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after
989 989
990 yield ( 990 yield (
991 api.test('swarming_paths') + 991 api.test('swarming_paths') +
992 api.properties.tryserver( 992 api.properties.tryserver(
993 mastername='tryserver.chromium.linux', 993 mastername='tryserver.chromium.linux',
994 buildername='linux_chromium_rel_ng', 994 buildername='linux_chromium_rel_ng',
995 path_config='swarming', 995 path_config='swarming',
996 ) + 996 ) +
997 api.platform.name('linux') 997 api.platform.name('linux')
998 ) 998 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698