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