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

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: Created 5 years, 4 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[gsutil]/resources/gsutil_wrapper.py", 6 "RECIPE_MODULE[gsutil]/resources/gsutil_wrapper.py",
7 "--", 7 "--",
8 "[DEPOT_TOOLS]/gsutil.py", 8 "[DEPOT_TOOLS]/gsutil.py",
9 "--force-version", 9 "--force-version",
10 "3.25", 10 "3.25",
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 "gs://chromium-recipe-test/foo/bar", 138 "gs://chromium-recipe-test/foo/bar",
139 "--dst", 139 "--dst",
140 "local/path/for/download", 140 "local/path/for/download",
141 "--poll-interval", 141 "--poll-interval",
142 "15", 142 "15",
143 "--timeout", 143 "--timeout",
144 "600" 144 "600"
145 ], 145 ],
146 "cwd": "[SLAVE_BUILD]", 146 "cwd": "[SLAVE_BUILD]",
147 "name": "Download GS file with polling" 147 "name": "Download GS file with polling"
148 },
149 {
150 "cmd": [
151 "python",
152 "-u",
153 "[BUILD]/scripts/slave/gsutil_download.py",
154 "--url",
155 "gs://chromium-recipe-test/foo",
156 "--dst",
157 "local/path/for/download",
158 "--partial-name",
159 "gs://chromium-recipe-test/foo/b"
160 ],
161 "cwd": "[SLAVE_BUILD]",
162 "name": "Download latest file from GS"
163 },
164 {
165 "cmd": [
166 "python",
167 "-u",
168 "RECIPE_MODULE[gsutil]/resources/gsutil_wrapper.py",
169 "--",
170 "[DEPOT_TOOLS]/gsutil.py",
171 "--force-version",
172 "3.25",
173 "----",
174 "ls",
175 "gs://chromium-recipe-test/foo"
176 ],
177 "cwd": "[SLAVE_BUILD]",
178 "name": "gsutil list"
148 } 179 }
149 ] 180 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698