| 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 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", | 8 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", |
| 9 "----", | 9 "----", |
| 10 "-h", | 10 "-h", |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 "local/path/for/download", | 121 "local/path/for/download", |
| 122 "--poll-interval", | 122 "--poll-interval", |
| 123 "15", | 123 "15", |
| 124 "--timeout", | 124 "--timeout", |
| 125 "600" | 125 "600" |
| 126 ], | 126 ], |
| 127 "cwd": "[SLAVE_BUILD]", | 127 "cwd": "[SLAVE_BUILD]", |
| 128 "name": "Download GS file with polling" | 128 "name": "Download GS file with polling" |
| 129 }, | 129 }, |
| 130 { | 130 { |
| 131 "cmd": [ |
| 132 "python", |
| 133 "-u", |
| 134 "[BUILD]/scripts/slave/gsutil_download.py", |
| 135 "--url", |
| 136 "gs://chromium-recipe-test/foo", |
| 137 "--dst", |
| 138 "local/path/for/download", |
| 139 "--partial-name", |
| 140 "gs://chromium-recipe-test/foo/b" |
| 141 ], |
| 142 "cwd": "[SLAVE_BUILD]", |
| 143 "name": "Download latest file from GS" |
| 144 }, |
| 145 { |
| 146 "cmd": [ |
| 147 "python", |
| 148 "-u", |
| 149 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
| 150 "--", |
| 151 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", |
| 152 "----", |
| 153 "ls", |
| 154 "gs://chromium-recipe-test/foo" |
| 155 ], |
| 156 "name": "gsutil list" |
| 157 }, |
| 158 { |
| 131 "name": "$result", | 159 "name": "$result", |
| 132 "recipe_result": null, | 160 "recipe_result": null, |
| 133 "status_code": 0 | 161 "status_code": 0 |
| 134 } | 162 } |
| 135 ] | 163 ] |
| OLD | NEW |