Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(677)

Side by Side Diff: scripts/slave/recipes/infra/build_conda_cipd_pkg.py

Issue 2045493002: build: add path_config=kitchen to infra recipes tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | scripts/slave/recipes/infra/depot_tools_builder.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 )
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/infra/depot_tools_builder.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698