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

Side by Side Diff: masters/master.chromium.webkit/master_android_latest_cfg.py

Issue 1300623002: Remove redundant bots from chromium.webkit (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 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
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5
6 from master import master_config
7 from master.factory import chromium_factory
8
9 defaults = {}
10
11 helper = master_config.Helper(defaults)
12 B = helper.Builder
13 F = helper.Factory
14 T = helper.Triggerable
15
16 def linux_android():
17 return chromium_factory.ChromiumFactory('',
18 'linux2', nohooks_on_update=True, target_os='android')
19
20
21 ################################################################################
22 ## Release
23 ################################################################################
24
25 defaults['category'] = 'nonlayout'
26
27 #
28 # Triggerable scheduler for the builder
29 #
30 T('android_dbg_trigger')
31
32 android_dbg_archive = master_config.GetGSUtilUrl(
33 'chromium-android', 'webkit_latest_dbg')
34
35 #
36 # Android dbg builder
37 #
38 B('Android Builder (dbg)', 'f_android_dbg', scheduler='global_scheduler')
39 F('f_android_dbg', linux_android().ChromiumAnnotationFactory(
40 target='Debug',
41 annotation_script='src/build/android/buildbot/bb_run_bot.py',
42 factory_properties={
43 'android_bot_id': 'webkit-latest-builder-dbg',
44 'build_url': android_dbg_archive,
45 'trigger': 'android_dbg_trigger',
46 'prune_limit': 5,
47 'blink_config': 'blink',
48 }))
49
50 B('Android Tests (dbg)', 'f_android_dbg_tests', None, 'android_dbg_trigger',
51 auto_reboot=False)
52 F('f_android_dbg_tests', linux_android().ChromiumAnnotationFactory(
53 target='Debug',
54 annotation_script='src/build/android/buildbot/bb_run_bot.py',
55 factory_properties={
56 'android_bot_id': 'webkit-latest-tests-dbg',
57 'build_url': android_dbg_archive,
58 'blink_config': 'blink',
59 }))
60
61 def Update(_config, _active_master, c):
62 return helper.Update(c)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698