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

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

Issue 2484343002: Drop Precise blink builders on chromium.webkit, add corresponding Trusty builders. (Closed)
Patch Set: Add ninja_confirm_noop and rerun recipe tests Created 4 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
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 1473 matching lines...) Expand 10 before | Expand all | Expand 10 after
1484 api.override_step_data('test_script_with_broken_tests', 1484 api.override_step_data('test_script_with_broken_tests',
1485 api.json.output({ 1485 api.json.output({
1486 'valid': True, 1486 'valid': True,
1487 'failures': ['FailSuite.Test1', 'FlakySuite.TestA'] 1487 'failures': ['FailSuite.Test1', 'FlakySuite.TestA']
1488 })) 1488 }))
1489 ) 1489 )
1490 1490
1491 yield ( 1491 yield (
1492 api.test('chromium_webkit_crash') + 1492 api.test('chromium_webkit_crash') +
1493 api.properties.generic(mastername='chromium.webkit', 1493 api.properties.generic(mastername='chromium.webkit',
1494 buildername='WebKit Linux Precise') + 1494 buildername='WebKit Linux Trusty') +
1495 api.platform('linux', 64) + 1495 api.platform('linux', 64) +
1496 api.override_step_data( 1496 api.override_step_data(
1497 'webkit_tests', 1497 'webkit_tests',
1498 api.test_utils.raw_test_output(None, retcode=1)) 1498 api.test_utils.raw_test_output(None, retcode=1))
1499 ) 1499 )
1500 1500
1501 yield ( 1501 yield (
1502 api.test('chromium_webkit_warnings') + 1502 api.test('chromium_webkit_warnings') +
1503 api.properties.generic(mastername='chromium.webkit', 1503 api.properties.generic(mastername='chromium.webkit',
1504 buildername='WebKit Linux Precise') + 1504 buildername='WebKit Linux Trusty') +
1505 api.platform('linux', 64) + 1505 api.platform('linux', 64) +
1506 api.override_step_data( 1506 api.override_step_data(
1507 'webkit_tests', 1507 'webkit_tests',
1508 api.test_utils.canned_test_output( 1508 api.test_utils.canned_test_output(
1509 passing=True, unexpected_flakes=True, retcode=0)) 1509 passing=True, unexpected_flakes=True, retcode=0))
1510 ) 1510 )
1511 1511
1512 yield ( 1512 yield (
1513 api.test('chromium_webkit_revision_webkit') + 1513 api.test('chromium_webkit_revision_webkit') +
1514 api.properties.generic(mastername='chromium.webkit', 1514 api.properties.generic(mastername='chromium.webkit',
1515 buildername='WebKit Linux Precise', 1515 buildername='WebKit Linux Trusty',
1516 project='webkit', 1516 project='webkit',
1517 revision='191187') + 1517 revision='191187') +
1518 api.platform('linux', 64) 1518 api.platform('linux', 64)
1519 ) 1519 )
1520 1520
1521 yield ( 1521 yield (
1522 api.test('chromium_webkit_revision_chromium') + 1522 api.test('chromium_webkit_revision_chromium') +
1523 api.properties.generic( 1523 api.properties.generic(
1524 mastername='chromium.webkit', 1524 mastername='chromium.webkit',
1525 buildername='WebKit Linux Precise', 1525 buildername='WebKit Linux Trusty',
1526 project='chromium', 1526 project='chromium',
1527 revision='3edb4989f8f69c968c0df14cb1c26d21dd19bf1f') + 1527 revision='3edb4989f8f69c968c0df14cb1c26d21dd19bf1f') +
1528 api.platform('linux', 64) 1528 api.platform('linux', 64)
1529 ) 1529 )
1530 1530
1531 yield ( 1531 yield (
1532 api.test('chromium_webkit_parent_revision_webkit') + 1532 api.test('chromium_webkit_parent_revision_webkit') +
1533 api.properties.generic( 1533 api.properties.generic(
1534 mastername='chromium.webkit', 1534 mastername='chromium.webkit',
1535 buildername='WebKit Win7', 1535 buildername='WebKit Win7',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
1567 yield ( 1567 yield (
1568 api.test('ensure_goma_fail') + 1568 api.test('ensure_goma_fail') +
1569 api.properties( 1569 api.properties(
1570 mastername='chromium.fyi', 1570 mastername='chromium.fyi',
1571 buildername='Linux remote_run Builder', 1571 buildername='Linux remote_run Builder',
1572 slavename='build1-a1', 1572 slavename='build1-a1',
1573 buildnumber='77457', 1573 buildnumber='77457',
1574 path_config='kitchen') + 1574 path_config='kitchen') +
1575 api.override_step_data('ensure_goma.ensure_installed', retcode=1) 1575 api.override_step_data('ensure_goma.ensure_installed', retcode=1)
1576 ) 1576 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698