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

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

Issue 2104143003: Build delegation for CQ jobs (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebase against master Created 4 years, 5 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 05f04f4982f70d662bd0f623b12dd076373bd064..195aacaf6357e788fc9f0ec8bb10ec24c90c728c 100644
--- a/scripts/slave/recipes/bisection/android_bisect.py
+++ b/scripts/slave/recipes/bisection/android_bisect.py
@@ -322,29 +322,55 @@ results-without_patch
yield (
api.test('perf_cq_run_benchmark_' + buildername) +
- api.properties.tryserver(mastername='tryserver.chromium.perf',
- buildername=buildername) + api.properties(
- requester='commit-bot@chromium.org') +
+ api.properties.tryserver(
+ mastername='tryserver.chromium.perf',
+ buildername=buildername,
+ patch_storage='rietveld',
+ patchset='20001',
+ issue='12345',
+ is_test=True,
+ rietveld="https://codereview.chromium.org") +
+ api.properties(requester='commit-bot@chromium.org') +
api.override_step_data(
'git diff to analyze patch',
- api.raw_io.stream_output('tools/perf/benchmarks/blink_perf.py')))
+ api.raw_io.stream_output('tools/perf/benchmarks/blink_perf.py')) +
+ api.step_data('buildbucket.put',
+ stdout=api.json.output(buildbucket_put_response)) +
+ api.step_data('buildbucket.get',
+ stdout=api.json.output(buildbucket_get_response)))
yield (api.test('perf_cq_no_changes_' + buildername) +
- api.properties.tryserver(mastername='tryserver.chromium.perf',
- buildername=buildername) + api.properties(
- requester='commit-bot@chromium.org') +
- api.override_step_data(
+ api.properties.tryserver(
+ mastername='tryserver.chromium.perf',
+ buildername=buildername,
+ patch_storage='rietveld',
+ patchset='20001',
+ issue='12345',
+ is_test=True,
+ rietveld="https://codereview.chromium.org") +
+ api.properties(requester='commit-bot@chromium.org') +
+ api.override_step_data(
'git diff to analyze patch',
api.raw_io.stream_output('tools/no_benchmark_file')))
yield (
api.test('perf_cq_no_benchmark_to_run_' + buildername) +
- api.properties.tryserver(mastername='tryserver.chromium.perf',
- buildername=buildername) + api.properties(
- requester='commit-bot@chromium.org') +
+ api.properties.tryserver(
+ mastername='tryserver.chromium.perf',
+ buildername=buildername,
+ patch_storage='rietveld',
+ patchset='20001',
+ issue='12345',
+ is_test=True,
+ rietveld="https://codereview.chromium.org") +
+ api.properties(requester='commit-bot@chromium.org') +
api.override_step_data(
'git diff to analyze patch',
- api.raw_io.stream_output('tools/perf/benchmarks/sunspider.py')))
+ api.raw_io.stream_output('tools/perf/benchmarks/sunspider.py')) +
+ api.step_data('buildbucket.put',
+ stdout=api.json.output(buildbucket_put_response)) +
+ api.step_data('buildbucket.get',
+ stdout=api.json.output(buildbucket_get_response)))
bisect_config = {
'test_type': 'perf',

Powered by Google App Engine
This is Rietveld 408576698