| 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',
|
|
|