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

Side by Side Diff: scripts/slave/recipes/infra/depot_tools_builder.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
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 windows depot_tools bootstrap zipfile.""" 5 """Recipe to build windows depot_tools bootstrap zipfile."""
6 6
7 DEPS = [ 7 DEPS = [
8 'recipe_engine/path', 8 'recipe_engine/path',
9 'recipe_engine/platform', 9 'recipe_engine/platform',
10 'recipe_engine/properties', 10 'recipe_engine/properties',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 api.gsutil.upload(zip_out, 'chrome-infra', 'depot_tools.zip', 54 api.gsutil.upload(zip_out, 'chrome-infra', 'depot_tools.zip',
55 args=['-a', 'public-read'], unauthenticated_url=True) 55 args=['-a', 'public-read'], unauthenticated_url=True)
56 56
57 # upload html docs 57 # upload html docs
58 api.gsutil(['cp', '-r', '-z', 'html', '-a', 'public-read', 58 api.gsutil(['cp', '-r', '-z', 'html', '-a', 'public-read',
59 api.path['checkout'].join('man', 'html'), DOC_UPLOAD_URL], 59 api.path['checkout'].join('man', 'html'), DOC_UPLOAD_URL],
60 name='upload docs') 60 name='upload docs')
61 61
62 62
63 def GenTests(api): 63 def GenTests(api):
64 yield api.test('basic') + api.properties(revision='deadbeef') 64 yield (
65 api.test('basic') +
66 api.properties(path_config='kitchen', revision='deadbeef')
67 )
OLDNEW
« no previous file with comments | « scripts/slave/recipes/infra/build_conda_cipd_pkg.py ('k') | scripts/slave/recipes/infra/infra_continuous.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698