| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 # This recipe is intended to control all of the GPU related bots: | 5 # This recipe is intended to control all of the GPU related bots: |
| 6 # chromium.gpu | 6 # chromium.gpu |
| 7 # chromium.gpu.fyi | 7 # chromium.gpu.fyi |
| 8 # The GPU bots on the chromium.webkit waterfall | 8 # The GPU bots on the chromium.webkit waterfall |
| 9 # The GPU bots on the tryserver.chromium waterfall | 9 # The GPU bots on the tryserver.chromium waterfall |
| 10 | 10 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 # Test one configuration skipping the checkout. | 82 # Test one configuration skipping the checkout. |
| 83 yield ( | 83 yield ( |
| 84 api.test('mac_release_skip_checkout') + | 84 api.test('mac_release_skip_checkout') + |
| 85 api.properties.git_scheduled(build_config='Release', skip_checkout=True) + | 85 api.properties.git_scheduled(build_config='Release', skip_checkout=True) + |
| 86 api.platform.name('mac') | 86 api.platform.name('mac') |
| 87 ) | 87 ) |
| 88 | 88 |
| 89 # Test one configuration skipping the compile. | 89 # Test one configuration skipping the compile. |
| 90 yield ( | 90 yield ( |
| 91 api.test('mac_release_skip_compile') + | 91 api.test('mac_release_skip_compile') + |
| 92 api.properties.git_scheduled(build_config='Release', skip_compile=True) + | 92 api.properties.git_scheduled( |
| 93 build_config='Release', |
| 94 skip_compile=True, |
| 95 # These would ordinarily be generated during the build step. |
| 96 swarm_hashes=dict( |
| 97 gl_tests='6e784864abbeeff7499c15f75b904851d633c187')) + |
| 93 api.platform.name('mac') | 98 api.platform.name('mac') |
| 94 ) | 99 ) |
| 95 | 100 |
| 96 # Bail when apply_issue fails | 101 # Bail when apply_issue fails |
| 97 yield ( | 102 yield ( |
| 98 api.test('bail_on_bad_patch') + | 103 api.test('bail_on_bad_patch') + |
| 99 api.properties.tryserver( | 104 api.properties.tryserver( |
| 100 build_config='Release', | 105 build_config='Release', |
| 101 root='src/third_party/WebKit') + | 106 root='src/third_party/WebKit') + |
| 102 api.platform.name('mac') + | 107 api.platform.name('mac') + |
| 103 api.step_data('apply_issue', retcode=1) | 108 api.step_data('apply_issue', retcode=1) |
| 104 ) | 109 ) |
| OLD | NEW |