OLD | NEW |
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 infra.libs.infra_types import freeze, thaw |
6 | 6 |
7 DEPS = [ | 7 DEPS = [ |
8 'auto_bisect', | 8 'auto_bisect', |
9 'bisect_tester', | 9 'bisect_tester', |
10 'bot_update', | 10 'bot_update', |
11 'chromium', | 11 'chromium', |
12 'chromium_android', | 12 'chromium_android', |
13 'chromium_tests', | 13 'chromium_tests', |
14 'gclient', | 14 'gclient', |
15 'json', | 15 'json', |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 stdout=api.raw_io.output('/tmp/dummy1')) | 291 stdout=api.raw_io.output('/tmp/dummy1')) |
292 + api.step_data('saving json to temp file', | 292 + api.step_data('saving json to temp file', |
293 stdout=api.raw_io.output('/tmp/dummy2')) | 293 stdout=api.raw_io.output('/tmp/dummy2')) |
294 + api.properties(bisect_config=bisect_config) | 294 + api.properties(bisect_config=bisect_config) |
295 + api.properties(job_name='f7a7b4135624439cbd27fdd5133d74ec') | 295 + api.properties(job_name='f7a7b4135624439cbd27fdd5133d74ec') |
296 + api.bisect_tester(tempfile='/tmp/dummy') | 296 + api.bisect_tester(tempfile='/tmp/dummy') |
297 + api.properties(parent_got_revision='1111111') | 297 + api.properties(parent_got_revision='1111111') |
298 + api.properties( | 298 + api.properties( |
299 parent_build_archive_url='gs://test-domain/test-archive.zip') | 299 parent_build_archive_url='gs://test-domain/test-archive.zip') |
300 ) | 300 ) |
OLD | NEW |