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

Unified Diff: scripts/slave/recipes/bisection/android_bisect.py

Issue 2228473002: bisection: prepare for running under remote_run (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipes/bisection/android_bisect.py
diff --git a/scripts/slave/recipes/bisection/android_bisect.py b/scripts/slave/recipes/bisection/android_bisect.py
index 40bf01bc55e9b56833c377fade7e4752096cb4aa..1011d2871a0cbc54207827d009a32dd4f864b6b5 100644
--- a/scripts/slave/recipes/bisection/android_bisect.py
+++ b/scripts/slave/recipes/bisection/android_bisect.py
@@ -103,7 +103,7 @@ def RunSteps(api, mastername, buildername):
api.gclient.set_config('chromium')
for c in bot_config.get('gclient_apply_config', []):
api.gclient.apply_config(c)
- update_step = api.bot_update.ensure_checkout()
+ update_step = api.auto_bisect.ensure_checkout()
api.chromium_android.clean_local_files()
bot_db = api.chromium_tests.create_bot_db_from_master_dict(mastername,
@@ -179,6 +179,7 @@ results-without_patch
for buildername in master_dict.get('builders', {}):
config_json = config_json_main.copy()
yield (api.test('basic_' + buildername) + api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername=buildername,
patch_storage='rietveld',
@@ -192,6 +193,7 @@ results-without_patch
yield (
api.test('basic_perf_tryjob_' + buildername) +
api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername=buildername,
patch_storage='rietveld',
@@ -219,6 +221,7 @@ results-without_patch
yield (api.test('basic_perf_tryjob_with_metric_' + buildername) +
api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername=buildername,
patch_storage='rietveld',
@@ -246,6 +249,7 @@ results-without_patch
yield (api.test('perf_tryjob_failed_test_' + buildername) +
api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername=buildername,
patch_storage='rietveld',
@@ -274,6 +278,7 @@ results-without_patch
yield (
api.test('basic_perf_tryjob_with_revisions_' + buildername) +
api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername=buildername,
patch_storage='rietveld',
@@ -313,6 +318,7 @@ results-without_patch
yield (
api.test('perf_tryjob_config_error_' + buildername) +
api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername=buildername) + api.properties(
requester='abcdxyz@chromium.org') + api.override_step_data(
@@ -323,6 +329,7 @@ results-without_patch
yield (
api.test('perf_cq_run_benchmark_' + buildername) +
api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername=buildername,
patch_storage='rietveld',
@@ -341,6 +348,7 @@ results-without_patch
yield (api.test('perf_cq_no_changes_' + buildername) +
api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername=buildername,
patch_storage='rietveld',
@@ -356,6 +364,7 @@ results-without_patch
yield (
api.test('perf_cq_no_benchmark_to_run_' + buildername) +
api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername=buildername,
patch_storage='rietveld',
@@ -387,6 +396,7 @@ results-without_patch
}
yield (api.test('basic_recipe_' + buildername) +
api.properties.tryserver(
+ path_config='kitchen',
mastername='tryserver.chromium.perf',
buildername=buildername) +
api.step_data(
@@ -544,6 +554,7 @@ results-without_patch
api.properties.tryserver(
mastername='tryserver.chromium.perf', buildername=buildername) +
api.properties(
+ path_config='kitchen',
bisect_config=local_bisect_config,
job_name='f7a7b4135624439cbd27fdd5133d74ec',
local_test=True,
@@ -581,6 +592,7 @@ results-without_patch
api.properties.tryserver(
mastername='tryserver.chromium.perf', buildername=buildername) +
api.properties(
+ path_config='kitchen',
bisect_config=local_bisect_config,
job_name='f7a7b4135624439cbd27fdd5133d74ec',
local_test=True,
@@ -596,6 +608,7 @@ results-without_patch
api.properties.tryserver(
mastername='tryserver.chromium.perf', buildername=buildername) +
api.properties(
+ path_config='kitchen',
bisect_config=local_bisect_config,
job_name='f7a7b4135624439cbd27fdd5133d74ec',
local_test=True,
@@ -636,6 +649,7 @@ results-without_patch
api.properties.tryserver(
mastername='tryserver.chromium.perf', buildername=buildername) +
api.properties(
+ path_config='kitchen',
bisect_config=local_bisect_config,
job_name='f7a7b4135624439cbd27fdd5133d74ec',
local_test=True,

Powered by Google App Engine
This is Rietveld 408576698