| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 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 DEPS = [ | 5 DEPS = [ |
| 6 'ios', |
| 6 'depot_tools/gclient', | 7 'depot_tools/gclient', |
| 7 'ios', | 8 'depot_tools/tryserver', |
| 8 'recipe_engine/json', | 9 'recipe_engine/json', |
| 9 'recipe_engine/platform', | 10 'recipe_engine/platform', |
| 10 'recipe_engine/properties', | 11 'recipe_engine/properties', |
| 11 'recipe_engine/raw_io', | 12 'recipe_engine/raw_io', |
| 12 'recipe_engine/step', | 13 'recipe_engine/step', |
| 13 'depot_tools/tryserver', | |
| 14 ] | 14 ] |
| 15 | 15 |
| 16 def RunSteps(api): | 16 def RunSteps(api): |
| 17 with api.tryserver.set_failure_hash(): | 17 with api.tryserver.set_failure_hash(): |
| 18 api.ios.host_info() | 18 api.ios.host_info() |
| 19 bot_update_step = api.ios.checkout() | 19 bot_update_step = api.ios.checkout() |
| 20 # Ensure try bots mirror configs from chromium.mac. | 20 # Ensure try bots mirror configs from chromium.mac. |
| 21 api.ios.read_build_config(master_name='chromium.mac') | 21 api.ios.read_build_config(master_name='chromium.mac') |
| 22 try: | 22 try: |
| 23 api.ios.build(suffix='with patch') | 23 api.ios.build(suffix='with patch') |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 'fake gyp define 1': 'fake value 1', | 67 'fake gyp define 1': 'fake value 1', |
| 68 'fake gyp define 2': 'fake value 2', | 68 'fake gyp define 2': 'fake value 2', |
| 69 }, | 69 }, |
| 70 'configuration': 'Debug', | 70 'configuration': 'Debug', |
| 71 'sdk': 'iphonesimulator8.0', | 71 'sdk': 'iphonesimulator8.0', |
| 72 'tests': [ | 72 'tests': [ |
| 73 { | 73 { |
| 74 'app': 'fake tests', | 74 'app': 'fake tests', |
| 75 'device type': 'fake device', | 75 'device type': 'fake device', |
| 76 'os': '8.1', | 76 'os': '8.1', |
| 77 'xctest': True, |
| 77 }, | 78 }, |
| 78 ], | 79 ], |
| 79 }) | 80 }) |
| 80 + api.step_data( | 81 + api.step_data( |
| 81 'bootstrap swarming.swarming.py --version', | 82 'bootstrap swarming.swarming.py --version', |
| 82 stdout=api.raw_io.output('1.2.3'), | 83 stdout=api.raw_io.output('1.2.3'), |
| 83 ) | 84 ) |
| 84 + suppress_analyze() | 85 + suppress_analyze() |
| 85 ) | 86 ) |
| 86 | 87 |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 'os': '8.1', | 405 'os': '8.1', |
| 405 }, | 406 }, |
| 406 ], | 407 ], |
| 407 }) | 408 }) |
| 408 + api.step_data( | 409 + api.step_data( |
| 409 'bootstrap swarming.swarming.py --version', | 410 'bootstrap swarming.swarming.py --version', |
| 410 stdout=api.raw_io.output('1.2.3'), | 411 stdout=api.raw_io.output('1.2.3'), |
| 411 ) | 412 ) |
| 412 + suppress_analyze() | 413 + suppress_analyze() |
| 413 ) | 414 ) |
| OLD | NEW |