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

Side by Side Diff: scripts/slave/recipes/bisection/android_bisect.py

Issue 2270943002: Make Nexus5X bisect bot use 64 bit binaries. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
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 (c) 2015 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2015 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 recipe_engine.types import freeze 5 from recipe_engine.types import freeze
6 6
7 DEPS = [ 7 DEPS = [
8 'auto_bisect', 8 'auto_bisect',
9 'bisect_tester', 9 'bisect_tester',
10 'depot_tools/bot_update', 10 'depot_tools/bot_update',
(...skipping 17 matching lines...) Expand all
28 'recipe_config': 'main_builder_rel_mb', 28 'recipe_config': 'main_builder_rel_mb',
29 'gclient_apply_config': ['android', 'perf'], 29 'gclient_apply_config': ['android', 'perf'],
30 'bucket': 'chrome-perf', 30 'bucket': 'chrome-perf',
31 }, 31 },
32 'android_nexus5_perf_bisect': { 32 'android_nexus5_perf_bisect': {
33 'recipe_config': 'main_builder_rel_mb', 33 'recipe_config': 'main_builder_rel_mb',
34 'gclient_apply_config': ['android', 'perf'], 34 'gclient_apply_config': ['android', 'perf'],
35 'bucket': 'chrome-perf', 35 'bucket': 'chrome-perf',
36 }, 36 },
37 'android_nexus5X_perf_bisect': { 37 'android_nexus5X_perf_bisect': {
38 'recipe_config': 'main_builder_rel_mb', 38 'recipe_config': 'arm64_builder_rel_mb',
39 'gclient_apply_config': ['android', 'perf'], 39 'gclient_apply_config': ['android', 'perf'],
40 'bucket': 'chrome-perf', 40 'bucket': 'chrome-perf',
41 }, 41 },
42 'android_nexus6_perf_bisect': { 42 'android_nexus6_perf_bisect': {
43 'recipe_config': 'main_builder_rel_mb', 43 'recipe_config': 'main_builder_rel_mb',
44 'gclient_apply_config': ['android', 'perf'], 44 'gclient_apply_config': ['android', 'perf'],
45 'bucket': 'chrome-perf', 45 'bucket': 'chrome-perf',
46 }, 46 },
47 'android_nexus7_perf_bisect': { 47 'android_nexus7_perf_bisect': {
48 'recipe_config': 'main_builder_rel_mb', 48 'recipe_config': 'main_builder_rel_mb',
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 # multiple_device_status 691 # multiple_device_status
692 api.step_data('Debug Info', retcode=1) + 692 api.step_data('Debug Info', retcode=1) +
693 api.override_step_data('device_status (3)', 693 api.override_step_data('device_status (3)',
694 api.json.output(working_device)) + 694 api.json.output(working_device)) +
695 api.step_data('Expanding revision range.for revisions %s:%s (2)' % ( 695 api.step_data('Expanding revision range.for revisions %s:%s (2)' % (
696 good_revision_hash, bad_revision_hash), 696 good_revision_hash, bad_revision_hash),
697 stdout=api.json.output([[bad_revision_hash, 'ignored'], [ 697 stdout=api.json.output([[bad_revision_hash, 'ignored'], [
698 good_revision_hash, 'ignored']])) + 698 good_revision_hash, 'ignored']])) +
699 api.step_data('Post bisect results', 699 api.step_data('Post bisect results',
700 stdout=api.json.output({'status_code': 200}))) 700 stdout=api.json.output({'status_code': 200})))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698