| 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 """Recipe to build CIPD package with sealed Conda environment. | 5 """Recipe to build CIPD package with sealed Conda environment. |
| 6 | 6 |
| 7 Supposed to be used from manually triggered Buildbot builders. We aren't | 7 Supposed to be used from manually triggered Buildbot builders. We aren't |
| 8 expecting rebuilding this environment often, so setting up and periodic schedule | 8 expecting rebuilding this environment often, so setting up and periodic schedule |
| 9 is a waste of resources. | 9 is a waste of resources. |
| 10 | 10 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 refs=['latest'], | 69 refs=['latest'], |
| 70 tags=tags) | 70 tags=tags) |
| 71 finally: | 71 finally: |
| 72 api.file.remove('remove *.cipd file', cipd_pkg_file) | 72 api.file.remove('remove *.cipd file', cipd_pkg_file) |
| 73 | 73 |
| 74 | 74 |
| 75 def GenTests(api): | 75 def GenTests(api): |
| 76 yield ( | 76 yield ( |
| 77 api.test('linux') + | 77 api.test('linux') + |
| 78 api.platform.name('linux') + | 78 api.platform.name('linux') + |
| 79 api.properties.generic() | 79 api.properties.generic(path_config='kitchen') |
| 80 ) | 80 ) |
| 81 yield ( | 81 yield ( |
| 82 api.test('mac') + | 82 api.test('mac') + |
| 83 api.platform.name('mac') + | 83 api.platform.name('mac') + |
| 84 api.properties.generic() | 84 api.properties.generic(path_config='kitchen') |
| 85 ) | 85 ) |
| 86 yield ( | 86 yield ( |
| 87 api.test('win') + | 87 api.test('win') + |
| 88 api.platform.name('win') + | 88 api.platform.name('win') + |
| 89 api.properties.generic() | 89 api.properties.generic(path_config='kitchen') |
| 90 ) | 90 ) |
| OLD | NEW |