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

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

Issue 2338293005: Rename all 'WebKit Linux' builders to 'WebKit Linux Precise' (1/3 CLs) (Closed)
Patch Set: Created 4 years, 3 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
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 DEPS = [ 5 DEPS = [
6 'adb', 6 'adb',
7 'bisect_tester', 7 'bisect_tester',
8 'depot_tools/bot_update', 8 'depot_tools/bot_update',
9 'chromium', 9 'chromium',
10 'chromium_android', 10 'chromium_android',
(...skipping 1271 matching lines...) Expand 10 before | Expand all | Expand 10 after
1282 api.override_step_data('test_script_with_broken_tests', 1282 api.override_step_data('test_script_with_broken_tests',
1283 api.json.output({ 1283 api.json.output({
1284 'valid': True, 1284 'valid': True,
1285 'failures': ['FailSuite.Test1', 'FlakySuite.TestA'] 1285 'failures': ['FailSuite.Test1', 'FlakySuite.TestA']
1286 })) 1286 }))
1287 ) 1287 )
1288 1288
1289 yield ( 1289 yield (
1290 api.test('chromium_webkit_crash') + 1290 api.test('chromium_webkit_crash') +
1291 api.properties.generic(mastername='chromium.webkit', 1291 api.properties.generic(mastername='chromium.webkit',
1292 buildername='WebKit Linux') + 1292 buildername='WebKit Linux Precise') +
1293 api.platform('linux', 64) + 1293 api.platform('linux', 64) +
1294 api.override_step_data( 1294 api.override_step_data(
1295 'webkit_tests', 1295 'webkit_tests',
1296 api.test_utils.raw_test_output(None, retcode=1)) 1296 api.test_utils.raw_test_output(None, retcode=1))
1297 ) 1297 )
1298 1298
1299 yield ( 1299 yield (
1300 api.test('chromium_webkit_warnings') + 1300 api.test('chromium_webkit_warnings') +
1301 api.properties.generic(mastername='chromium.webkit', 1301 api.properties.generic(mastername='chromium.webkit',
1302 buildername='WebKit Linux') + 1302 buildername='WebKit Linux Precise') +
1303 api.platform('linux', 64) + 1303 api.platform('linux', 64) +
1304 api.override_step_data( 1304 api.override_step_data(
1305 'webkit_tests', 1305 'webkit_tests',
1306 api.test_utils.canned_test_output( 1306 api.test_utils.canned_test_output(
1307 passing=True, unexpected_flakes=True, retcode=0)) 1307 passing=True, unexpected_flakes=True, retcode=0))
1308 ) 1308 )
1309 1309
1310 yield ( 1310 yield (
1311 api.test('chromium_webkit_revision_webkit') + 1311 api.test('chromium_webkit_revision_webkit') +
1312 api.properties.generic(mastername='chromium.webkit', 1312 api.properties.generic(mastername='chromium.webkit',
1313 buildername='WebKit Linux', 1313 buildername='WebKit Linux Precise',
1314 project='webkit', 1314 project='webkit',
1315 revision='191187') + 1315 revision='191187') +
1316 api.platform('linux', 64) 1316 api.platform('linux', 64)
1317 ) 1317 )
1318 1318
1319 yield ( 1319 yield (
1320 api.test('chromium_webkit_revision_chromium') + 1320 api.test('chromium_webkit_revision_chromium') +
1321 api.properties.generic( 1321 api.properties.generic(
1322 mastername='chromium.webkit', 1322 mastername='chromium.webkit',
1323 buildername='WebKit Linux', 1323 buildername='WebKit Linux Precise',
1324 project='chromium', 1324 project='chromium',
1325 revision='3edb4989f8f69c968c0df14cb1c26d21dd19bf1f') + 1325 revision='3edb4989f8f69c968c0df14cb1c26d21dd19bf1f') +
1326 api.platform('linux', 64) 1326 api.platform('linux', 64)
1327 ) 1327 )
1328 1328
1329 yield ( 1329 yield (
1330 api.test('chromium_webkit_parent_revision_webkit') + 1330 api.test('chromium_webkit_parent_revision_webkit') +
1331 api.properties.generic( 1331 api.properties.generic(
1332 mastername='chromium.webkit', 1332 mastername='chromium.webkit',
1333 buildername='WebKit Win7', 1333 buildername='WebKit Win7',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
1365 yield ( 1365 yield (
1366 api.test('ensure_goma_fail') + 1366 api.test('ensure_goma_fail') +
1367 api.properties( 1367 api.properties(
1368 mastername='chromium.fyi', 1368 mastername='chromium.fyi',
1369 buildername='Linux remote_run Builder', 1369 buildername='Linux remote_run Builder',
1370 slavename='build1-a1', 1370 slavename='build1-a1',
1371 buildnumber='77457', 1371 buildnumber='77457',
1372 path_config='kitchen') + 1372 path_config='kitchen') +
1373 api.override_step_data('ensure_goma.ensure_installed', retcode=1) 1373 api.override_step_data('ensure_goma.ensure_installed', retcode=1)
1374 ) 1374 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698