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

Side by Side Diff: scripts/slave/recipe_modules/gsutil/example.expected/basic.json

Issue 1274723004: Converted Android Chromedriver buildbot scripts to recipes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Fixed one of the docstrings Created 4 years, 8 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 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", 6 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py",
7 "--", 7 "--",
8 "[DEPOT_TOOLS]/gsutil.py", 8 "[DEPOT_TOOLS]/gsutil.py",
9 "----", 9 "----",
10 "-h", 10 "-h",
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 "local/path/for/download", 128 "local/path/for/download",
129 "--poll-interval", 129 "--poll-interval",
130 "15", 130 "15",
131 "--timeout", 131 "--timeout",
132 "600" 132 "600"
133 ], 133 ],
134 "cwd": "[SLAVE_BUILD]", 134 "cwd": "[SLAVE_BUILD]",
135 "name": "Download GS file with polling" 135 "name": "Download GS file with polling"
136 }, 136 },
137 { 137 {
138 "cmd": [
139 "python",
140 "-u",
141 "[BUILD]/scripts/slave/gsutil_download.py",
142 "--url",
143 "gs://chromium-recipe-test/foo",
144 "--dst",
145 "local/path/for/download",
146 "--partial-name",
147 "gs://chromium-recipe-test/foo/b"
148 ],
149 "cwd": "[SLAVE_BUILD]",
150 "name": "Download latest file from GS"
151 },
152 {
153 "cmd": [
154 "python",
155 "-u",
156 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py",
157 "--",
158 "[DEPOT_TOOLS]/gsutil.py",
159 "----",
160 "ls",
161 "gs://chromium-recipe-test/foo"
162 ],
163 "cwd": "[SLAVE_BUILD]",
164 "name": "gsutil list"
165 },
166 {
138 "name": "$result", 167 "name": "$result",
139 "recipe_result": null, 168 "recipe_result": null,
140 "status_code": 0 169 "status_code": 0
141 } 170 }
142 ] 171 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698