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

Side by Side Diff: scripts/tools/lkgr_finder.py

Issue 66063002: Remove Win Aura bots from the buildbot and tryservers since they're now redundant as trunk Windows … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: 80 cols Created 7 years, 1 month 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 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Fetch the latest results for a pre-selected set of builders we care about. 6 """Fetch the latest results for a pre-selected set of builders we care about.
7 If we find a 'good' revision -- based on criteria explained below -- we 7 If we find a 'good' revision -- based on criteria explained below -- we
8 mark the revision as LKGR, and POST it to the LKGR server: 8 mark the revision as LKGR, and POST it to the LKGR server:
9 9
10 http://chromium-status.appspot.com/lkgr 10 http://chromium-status.appspot.com/lkgr
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 'Win7 Tests (dbg)(5)': [ 135 'Win7 Tests (dbg)(5)': [
136 'browser_tests', 136 'browser_tests',
137 ], 137 ],
138 'Win7 Tests (dbg)(6)': [ 138 'Win7 Tests (dbg)(6)': [
139 'browser_tests', 139 'browser_tests',
140 ], 140 ],
141 'Chrome Frame Tests (ie8)': [ 141 'Chrome Frame Tests (ie8)': [
142 'chrome_frame_tests', 142 'chrome_frame_tests',
143 'chrome_frame_unittests', 143 'chrome_frame_unittests',
144 ], 144 ],
145 # 'Interactive Tests (dbg)': [
146 # 'interactive_ui_tests',
147 # ],
148 'Win Aura Builder': [
149 'compile',
150 ],
151 'Win Aura Tests (1)': [
152 'ash_unittests',
153 'aura_unittests',
154 'browser_tests',
155 'content_browsertests',
156 ],
157 'Win Aura Tests (2)': [
158 'browser_tests',
159 'compositor_unittests',
160 'content_unittests',
161 'unit_tests',
162 'views_unittests',
163 ],
164 'Win Aura Tests (3)': [
165 'browser_tests',
166 'interactive_ui_tests',
167 ],
168 }, # chromium.win 145 }, # chromium.win
169 'chromium.mac': { 146 'chromium.mac': {
170 'Mac Builder (dbg)': [ 147 'Mac Builder (dbg)': [
171 'compile', 148 'compile',
172 ], 149 ],
173 'Mac 10.6 Tests (dbg)(1)': [ 150 'Mac 10.6 Tests (dbg)(1)': [
174 'browser_tests', 151 'browser_tests',
175 'cc_unittests', 152 'cc_unittests',
176 'chromedriver2_unittests', 153 'chromedriver2_unittests',
177 'jingle_unittests', 154 'jingle_unittests',
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 'Linux Builder (dbg)(32)': ['compile'], 291 'Linux Builder (dbg)(32)': ['compile'],
315 'Linux Aura': ['compile'], 292 'Linux Aura': ['compile'],
316 'Android Builder (dbg)': ['slave_steps'], 293 'Android Builder (dbg)': ['slave_steps'],
317 'Android Builder': ['slave_steps'], 294 'Android Builder': ['slave_steps'],
318 }, 295 },
319 'chromium.mac': { 296 'chromium.mac': {
320 'Mac Builder (dbg)': ['compile'], 297 'Mac Builder (dbg)': ['compile'],
321 }, 298 },
322 'chromium.win': { 299 'chromium.win': {
323 'Win Builder (dbg)': ['compile'], 300 'Win Builder (dbg)': ['compile'],
324 'Win Aura Builder': ['compile'],
325 }, 301 },
326 'chromium.webkit': { 302 'chromium.webkit': {
327 'WebKit Win Builder (deps)': ['compile'], 303 'WebKit Win Builder (deps)': ['compile'],
328 'WebKit Mac Builder (deps)': ['compile'], 304 'WebKit Mac Builder (deps)': ['compile'],
329 'WebKit Linux (deps)': ['compile'], 305 'WebKit Linux (deps)': ['compile'],
330 }, 306 },
331 } 307 }
332 308
333 V8_NORMAL_STEPS = ['compile', 'Check', 'Test262', 'Mozilla'] 309 V8_NORMAL_STEPS = ['compile', 'Check', 'Test262', 'Mozilla']
334 310
(...skipping 844 matching lines...) Expand 10 before | Expand all | Expand 10 after
1179 '%s%s LKGR (%s) exceeds lag threshold' % 1155 '%s%s LKGR (%s) exceeds lag threshold' %
1180 (subject_base, lkgr_type, lkgr), '\n'.join(RUN_LOG)) 1156 (subject_base, lkgr_type, lkgr), '\n'.join(RUN_LOG))
1181 return 1 1157 return 1
1182 1158
1183 VerbosePrint('-' * 52) 1159 VerbosePrint('-' * 52)
1184 1160
1185 return 0 1161 return 0
1186 1162
1187 if __name__ == '__main__': 1163 if __name__ == '__main__':
1188 sys.exit(main()) 1164 sys.exit(main())
OLDNEW
« masters/master.chromiumos.unused/slaves.cfg ('K') | « masters/master.tryserver.unused/slaves.cfg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698