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

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

Issue 11139002: Add O/S versions to all bot names, change "Webkit" to "WebKit" in all bot names. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: fix Win7 dbg bots Created 8 years, 2 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 from master import master_config 5 from master import master_config
6 from master.factory import chromium_factory 6 from master.factory import chromium_factory
7 7
8 defaults = {} 8 defaults = {}
9 9
10 helper = master_config.Helper(defaults) 10 helper = master_config.Helper(defaults)
(...skipping 11 matching lines...) Expand all
22 defaults['category'] = '6webkit linux latest' 22 defaults['category'] = '6webkit linux latest'
23 23
24 # 24 #
25 # Main release scheduler for webkit 25 # Main release scheduler for webkit
26 # 26 #
27 S('s6_webkit_rel', branch='trunk', treeStableTimer=60) 27 S('s6_webkit_rel', branch='trunk', treeStableTimer=60)
28 28
29 # 29 #
30 # Linux Rel Builder/Tester 30 # Linux Rel Builder/Tester
31 # 31 #
32 B('Webkit Linux', 'f_webkit_linux_rel', scheduler='s6_webkit_rel') 32 B('WebKit Linux', 'f_webkit_linux_rel', scheduler='s6_webkit_rel')
33 F('f_webkit_linux_rel', linux().ChromiumWebkitLatestFactory( 33 F('f_webkit_linux_rel', linux().ChromiumWebkitLatestFactory(
34 tests=[ 34 tests=[
35 'test_shell', 35 'test_shell',
36 'webkit', 36 'webkit',
37 'webkit_lint', 37 'webkit_lint',
38 'webkit_unit', 38 'webkit_unit',
39 ], 39 ],
40 options=[ 40 options=[
41 '--compiler=goma', 41 '--compiler=goma',
42 'DumpRenderTree', 42 'DumpRenderTree',
43 'test_shell', 43 'test_shell',
44 'test_shell_tests', 44 'test_shell_tests',
45 'webkit_unit_tests', 45 'webkit_unit_tests',
46 ], 46 ],
47 factory_properties={'archive_webkit_results': True, 47 factory_properties={'archive_webkit_results': True,
48 'generate_gtest_json': True, 48 'generate_gtest_json': True,
49 'test_results_server': 'test-results.appspot.com'})) 49 'test_results_server': 'test-results.appspot.com'}))
50 50
51 B('Webkit Linux 32', 'f_webkit_linux_rel', scheduler='s6_webkit_rel') 51 B('WebKit Linux 32', 'f_webkit_linux_rel', scheduler='s6_webkit_rel')
52 52
53 asan_gyp = ('asan=1 linux_use_tcmalloc=0 ' 53 asan_gyp = ('asan=1 linux_use_tcmalloc=0 '
54 'release_extra_cflags="-g -O1 -fno-inline-functions -fno-inline"') 54 'release_extra_cflags="-g -O1 -fno-inline-functions -fno-inline"')
55 55
56 B('Webkit Linux ASAN', 'f_webkit_linux_rel_asan', scheduler='s6_webkit_rel', 56 B('WebKit Linux ASAN', 'f_webkit_linux_rel_asan', scheduler='s6_webkit_rel',
57 auto_reboot=False) 57 auto_reboot=False)
58 F('f_webkit_linux_rel_asan', linux().ChromiumWebkitLatestFactory( 58 F('f_webkit_linux_rel_asan', linux().ChromiumWebkitLatestFactory(
59 tests=['webkit'], 59 tests=['webkit'],
60 options=['--compiler=goma-clang', 'DumpRenderTree'], 60 options=['--compiler=goma-clang', 'DumpRenderTree'],
61 factory_properties={ 61 factory_properties={
62 'additional_expectations_files': [ 62 'additional_expectations_files': [
63 ['webkit', 'tools', 'layout_tests', 'test_expectations_asan.txt' ], 63 ['webkit', 'tools', 'layout_tests', 'test_expectations_asan.txt' ],
64 ], 64 ],
65 'gs_bucket': 'gs://webkit-asan', 65 'gs_bucket': 'gs://webkit-asan',
66 'gclient_env': {'GYP_DEFINES': asan_gyp}, 66 'gclient_env': {'GYP_DEFINES': asan_gyp},
67 'time_out_ms': '18000'})) 67 'time_out_ms': '18000'}))
68 68
69 69
70 ################################################################################ 70 ################################################################################
71 ## Debug 71 ## Debug
72 ################################################################################ 72 ################################################################################
73 73
74 # 74 #
75 # Main debug scheduler for webkit 75 # Main debug scheduler for webkit
76 # 76 #
77 S('s6_webkit_dbg', branch='trunk', treeStableTimer=60) 77 S('s6_webkit_dbg', branch='trunk', treeStableTimer=60)
78 78
79 # 79 #
80 # Linux Dbg Webkit builders/testers 80 # Linux Dbg Webkit builders/testers
81 # 81 #
82 82
83 B('Webkit Linux (dbg)', 'f_webkit_dbg_tests', scheduler='s6_webkit_dbg', 83 B('WebKit Linux (dbg)', 'f_webkit_dbg_tests', scheduler='s6_webkit_dbg',
84 auto_reboot=False) 84 auto_reboot=False)
85 F('f_webkit_dbg_tests', linux().ChromiumWebkitLatestFactory( 85 F('f_webkit_dbg_tests', linux().ChromiumWebkitLatestFactory(
86 target='Debug', 86 target='Debug',
87 tests=[ 87 tests=[
88 'test_shell', 88 'test_shell',
89 'webkit', 89 'webkit',
90 'webkit_lint', 90 'webkit_lint',
91 'webkit_unit', 91 'webkit_unit',
92 ], 92 ],
93 options=[ 93 options=[
94 '--compiler=goma', 94 '--compiler=goma',
95 'test_shell', 95 'test_shell',
96 'test_shell_tests', 96 'test_shell_tests',
97 'webkit_unit_tests', 97 'webkit_unit_tests',
98 'DumpRenderTree', 98 'DumpRenderTree',
99 ], 99 ],
100 factory_properties={'archive_webkit_results': True, 100 factory_properties={'archive_webkit_results': True,
101 'generate_gtest_json': True, 101 'generate_gtest_json': True,
102 'test_results_server': 'test-results.appspot.com'})) 102 'test_results_server': 'test-results.appspot.com'}))
103 103
104 def Update(config, active_master, c): 104 def Update(config, active_master, c):
105 return helper.Update(c) 105 return helper.Update(c)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698