| 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 builders on the | 5 # This recipe is intended to control all of the GPU builders on the |
| 6 # following waterfalls: | 6 # following waterfalls: |
| 7 # chromium.gpu | 7 # chromium.gpu |
| 8 # chromium.gpu.fyi | 8 # chromium.gpu.fyi |
| 9 # chromium.webkit | 9 # chromium.webkit |
| 10 | 10 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 build_config='Release', | 48 build_config='Release', |
| 49 mastername='chromium.gpu.fyi', | 49 mastername='chromium.gpu.fyi', |
| 50 buildername='win release tot angle builder', | 50 buildername='win release tot angle builder', |
| 51 buildnumber=572) + | 51 buildnumber=572) + |
| 52 api.platform.name('win') | 52 api.platform.name('win') |
| 53 ) | 53 ) |
| 54 | 54 |
| 55 yield ( | 55 yield ( |
| 56 api.test('compile_with_patch_fail') + | 56 api.test('compile_with_patch_fail') + |
| 57 api.properties.tryserver( | 57 api.properties.tryserver( |
| 58 mastername='tryserver.chromium.gpu', | 58 mastername='tryserver.chromium.win', |
| 59 buildername='win_gpu') + | 59 buildername='win_chromium_rel_ng') + |
| 60 api.override_step_data('analyze', api.gpu.analyze_builds_everything) + | 60 api.override_step_data('analyze', api.gpu.analyze_builds_everything) + |
| 61 api.step_data('compile (with patch)', retcode=1) + | 61 api.step_data('compile (with patch)', retcode=1) + |
| 62 api.platform.name('win') | 62 api.platform.name('win') |
| 63 ) | 63 ) |
| 64 | 64 |
| 65 yield ( | 65 yield ( |
| 66 api.test('compile_without_patch_fail') + | 66 api.test('compile_without_patch_fail') + |
| 67 api.properties.tryserver( | 67 api.properties.tryserver( |
| 68 mastername='tryserver.chromium.gpu', | 68 mastername='tryserver.chromium.win', |
| 69 buildername='win_gpu') + | 69 buildername='win_chromium_rel_ng') + |
| 70 api.override_step_data('analyze', api.gpu.analyze_builds_everything) + | 70 api.override_step_data('analyze', api.gpu.analyze_builds_everything) + |
| 71 api.step_data('compile (with patch)', retcode=1) + | 71 api.step_data('compile (with patch)', retcode=1) + |
| 72 api.step_data('compile (without patch)', retcode=1) + | 72 api.step_data('compile (without patch)', retcode=1) + |
| 73 api.platform.name('win') | 73 api.platform.name('win') |
| 74 ) | 74 ) |
| 75 | 75 |
| 76 yield ( | 76 yield ( |
| 77 api.test('compile_fail_is_critical_on_main') + | 77 api.test('compile_fail_is_critical_on_main') + |
| 78 api.properties.scheduled( | 78 api.properties.scheduled( |
| 79 build_config='Release', | 79 build_config='Release', |
| 80 mastername='chromium.gpu.testing', | 80 mastername='chromium.gpu.testing', |
| 81 buildername='linux release builder', | 81 buildername='linux release builder', |
| 82 buildnumber=571) + | 82 buildnumber=571) + |
| 83 api.platform.name('linux') + | 83 api.platform.name('linux') + |
| 84 api.step_data('compile', retcode=1) | 84 api.step_data('compile', retcode=1) |
| 85 ) | 85 ) |
| 86 | 86 |
| 87 # Tests analyze module exits early if patch can't affect this config. | 87 # Tests analyze module exits early if patch can't affect this config. |
| 88 yield ( | 88 yield ( |
| 89 api.test('analyze_builds_nothing') + | 89 api.test('analyze_builds_nothing') + |
| 90 api.properties.tryserver( | 90 api.properties.tryserver( |
| 91 mastername='tryserver.chromium.gpu', | 91 mastername='tryserver.chromium.win', |
| 92 buildername='win_gpu') + | 92 buildername='win_chromium_rel_ng') + |
| 93 api.override_step_data( | 93 api.override_step_data( |
| 94 'analyze', | 94 'analyze', |
| 95 api.gpu.analyze_builds_nothing) | 95 api.gpu.analyze_builds_nothing) |
| 96 ) | 96 ) |
| 97 | 97 |
| 98 # Tests that we only build a single isolate if that's all that | 98 # Tests that we only build a single isolate if that's all that |
| 99 # needed to be rebuilt in a patch. | 99 # needed to be rebuilt in a patch. |
| 100 yield ( | 100 yield ( |
| 101 api.test('analyze_builds_only_gpu_unittests') + | 101 api.test('analyze_builds_only_gpu_unittests') + |
| 102 api.properties.tryserver( | 102 api.properties.tryserver( |
| 103 mastername='tryserver.chromium.gpu', | 103 mastername='tryserver.chromium.win', |
| 104 buildername='win_gpu') + | 104 buildername='win_chromium_rel_ng') + |
| 105 api.override_step_data( | 105 api.override_step_data( |
| 106 'analyze', | 106 'analyze', |
| 107 api.gpu.analyze_builds_gpu_unittests) | 107 api.gpu.analyze_builds_gpu_unittests) |
| 108 ) | 108 ) |
| OLD | NEW |