| OLD | NEW |
| 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 Loading... |
| 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 ] |
| OLD | NEW |