| OLD | NEW |
| 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 'amp', | 7 'amp', |
| 8 'bisect_tester', | 8 'bisect_tester', |
| 9 'depot_tools/bot_update', | 9 'depot_tools/bot_update', |
| 10 'chromium', | 10 'chromium', |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 mastername = api.properties.get('mastername') | 46 mastername = api.properties.get('mastername') |
| 47 buildername = api.properties.get('buildername') | 47 buildername = api.properties.get('buildername') |
| 48 | 48 |
| 49 if mastername == 'tryserver.chromium.perf' and api.chromium_tests.builders[ | 49 if mastername == 'tryserver.chromium.perf' and api.chromium_tests.builders[ |
| 50 mastername]['builders'][buildername]['bot_type'] == 'tester': | 50 mastername]['builders'][buildername]['bot_type'] == 'tester': |
| 51 api.bisect_tester.upload_job_url() | 51 api.bisect_tester.upload_job_url() |
| 52 | 52 |
| 53 bot_config = api.chromium_tests.create_bot_config_object( | 53 bot_config = api.chromium_tests.create_bot_config_object( |
| 54 mastername, buildername) | 54 mastername, buildername) |
| 55 api.chromium_tests.configure_build(bot_config) | 55 api.chromium_tests.configure_build(bot_config) |
| 56 update_step, bot_db = api.chromium_tests.prepare_checkout(bot_config) | 56 update_step, bot_db = api.chromium_tests.prepare_checkout( |
| 57 bot_config, force=True) |
| 57 tests, tests_including_triggered = api.chromium_tests.get_tests( | 58 tests, tests_including_triggered = api.chromium_tests.get_tests( |
| 58 bot_config, bot_db) | 59 bot_config, bot_db) |
| 59 compile_targets = api.chromium_tests.get_compile_targets( | 60 compile_targets = api.chromium_tests.get_compile_targets( |
| 60 bot_config, bot_db, tests_including_triggered) | 61 bot_config, bot_db, tests_including_triggered) |
| 61 api.chromium_tests.compile_specific_targets( | 62 api.chromium_tests.compile_specific_targets( |
| 62 bot_config, update_step, bot_db, | 63 bot_config, update_step, bot_db, |
| 63 compile_targets, tests_including_triggered) | 64 compile_targets, tests_including_triggered) |
| 64 api.chromium_tests.archive_build( | 65 api.chromium_tests.archive_build( |
| 65 mastername, buildername, update_step, bot_db) | 66 mastername, buildername, update_step, bot_db) |
| 66 api.chromium_tests.download_and_unzip_build(mastername, buildername, | 67 api.chromium_tests.download_and_unzip_build(mastername, buildername, |
| (...skipping 934 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1001 api.test('amp_split_recipe_collect_failure') + | 1002 api.test('amp_split_recipe_collect_failure') + |
| 1002 api.properties( | 1003 api.properties( |
| 1003 mastername='chromium.fyi', | 1004 mastername='chromium.fyi', |
| 1004 buildername='Android Tests (amp split)', | 1005 buildername='Android Tests (amp split)', |
| 1005 slavename='build1-a1', | 1006 slavename='build1-a1', |
| 1006 buildnumber='77457', | 1007 buildnumber='77457', |
| 1007 parent_build_archive_url='gs://test-domain/test-archive.zip' | 1008 parent_build_archive_url='gs://test-domain/test-archive.zip' |
| 1008 ) + | 1009 ) + |
| 1009 api.override_step_data('[collect] base_unittests', retcode=1) | 1010 api.override_step_data('[collect] base_unittests', retcode=1) |
| 1010 ) | 1011 ) |
| OLD | NEW |