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

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

Issue 14440005: Rework how bots get the version of Blink. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: fix typo in devtools master.cfg Created 7 years, 8 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 (c) 2012 The Chromium Authors. All rights reserved. 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 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 5
6 from master import master_config 6 from master import master_config
7 from master.factory import chromium_factory 7 from master.factory import chromium_factory
8 8
9 import config 9 import config
10 10
(...skipping 27 matching lines...) Expand all
38 # Triggerable scheduler for the builder 38 # Triggerable scheduler for the builder
39 # 39 #
40 T('android_rel_trigger') 40 T('android_rel_trigger')
41 41
42 android_rel_archive = master_config.GetGSUtilUrl( 42 android_rel_archive = master_config.GetGSUtilUrl(
43 'chromium-android', 'webkit_latest_rel') 43 'chromium-android', 'webkit_latest_rel')
44 # 44 #
45 # Android Rel Builder 45 # Android Rel Builder
46 # 46 #
47 B('Android Builder', 'f_android_rel', scheduler='s5_android_webkit') 47 B('Android Builder', 'f_android_rel', scheduler='s5_android_webkit')
48 F('f_android_rel', linux_android().ChromiumWebkitLatestAnnotationFactory( 48 F('f_android_rel', linux_android().ChromiumAnnotationFactory(
49 annotation_script='src/build/android/buildbot/bb_run_bot.py', 49 annotation_script='src/build/android/buildbot/bb_run_bot.py',
50 factory_properties={ 50 factory_properties={
51 'android_bot_id': 'webkit-latest-builder-rel', 51 'android_bot_id': 'webkit-latest-builder-rel',
52 'build_url': android_rel_archive, 52 'build_url': android_rel_archive,
53 'trigger': 'android_rel_trigger', 53 'trigger': 'android_rel_trigger',
54 'blink_config': 'blink',
54 })) 55 }))
55 56
56 B('WebKit Android (GalaxyNexus)', 'f_webkit_android_tests', None, 57 B('WebKit Android (GalaxyNexus)', 'f_webkit_android_tests', None,
57 'android_rel_trigger') 58 'android_rel_trigger')
58 F('f_webkit_android_tests', 59 F('f_webkit_android_tests',
59 linux_android().ChromiumWebkitLatestAnnotationFactory( 60 linux_android().ChromiumAnnotationFactory(
60 annotation_script='src/build/android/buildbot/bb_run_bot.py', 61 annotation_script='src/build/android/buildbot/bb_run_bot.py',
61 factory_properties={ 62 factory_properties={
62 'android_bot_id': 'webkit-latest-webkit-tests-rel', 63 'android_bot_id': 'webkit-latest-webkit-tests-rel',
63 'archive_webkit_results': ActiveMaster.is_production_host, 64 'archive_webkit_results': ActiveMaster.is_production_host,
64 'build_url': android_rel_archive, 65 'build_url': android_rel_archive,
65 'generate_gtest_json': True, 66 'generate_gtest_json': True,
66 'test_results_server': 'test-results.appspot.com', 67 'test_results_server': 'test-results.appspot.com',
68 'blink_config': 'blink',
67 })) 69 }))
68 70
69 def Update(_config, active_master, c): 71 def Update(_config, active_master, c):
70 return helper.Update(c) 72 return helper.Update(c)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698