| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", | 6 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", |
| 7 "--json-output", | 7 "--json-output", |
| 8 "/path/to/tmp/json", | 8 "/path/to/tmp/json", |
| 9 "ensure-directory", | 9 "ensure-directory", |
| 10 "--mode", | 10 "--mode", |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "copy", | 94 "copy", |
| 95 "cc", | 95 "cc", |
| 96 "[START_DIR]/some dir/cc" | 96 "[START_DIR]/some dir/cc" |
| 97 ], | 97 ], |
| 98 "infra_step": true, | 98 "infra_step": true, |
| 99 "name": "write cc" | 99 "name": "write cc" |
| 100 }, | 100 }, |
| 101 { | 101 { |
| 102 "cmd": [ | 102 "cmd": [ |
| 103 "python", | 103 "python", |
| 104 "-u", |
| 105 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", |
| 106 "--json-output", |
| 107 "/path/to/tmp/json", |
| 108 "filesizes", |
| 109 "[START_DIR]/some dir/a", |
| 110 "[START_DIR]/some dir/aa", |
| 111 "[START_DIR]/some dir/b", |
| 112 "[START_DIR]/some dir/bb", |
| 113 "[START_DIR]/some dir/c", |
| 114 "[START_DIR]/some dir/cc" |
| 115 ], |
| 116 "infra_step": true, |
| 117 "name": "check filesizes", |
| 118 "stdout": "/path/to/tmp/", |
| 119 "~followup_annotations": [ |
| 120 "@@@STEP_LOG_LINE@filesizes@[START_DIR]/some dir/a: \t111@@@", |
| 121 "@@@STEP_LOG_LINE@filesizes@[START_DIR]/some dir/aa: \t221@@@", |
| 122 "@@@STEP_LOG_LINE@filesizes@[START_DIR]/some dir/b: \t333@@@", |
| 123 "@@@STEP_LOG_LINE@filesizes@[START_DIR]/some dir/bb: \t438@@@", |
| 124 "@@@STEP_LOG_LINE@filesizes@[START_DIR]/some dir/c: \t551@@@", |
| 125 "@@@STEP_LOG_LINE@filesizes@[START_DIR]/some dir/cc: \t666@@@", |
| 126 "@@@STEP_LOG_END@filesizes@@@" |
| 127 ] |
| 128 }, |
| 129 { |
| 130 "cmd": [ |
| 131 "python", |
| 104 "-u", | 132 "-u", |
| 105 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", | 133 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", |
| 106 "--json-output", | 134 "--json-output", |
| 107 "/path/to/tmp/json", | 135 "/path/to/tmp/json", |
| 108 "rmtree", | 136 "rmtree", |
| 109 "[START_DIR]/some other dir" | 137 "[START_DIR]/some other dir" |
| 110 ], | 138 ], |
| 111 "infra_step": true, | 139 "infra_step": true, |
| 112 "name": "make sure dest is gone" | 140 "name": "make sure dest is gone" |
| 113 }, | 141 }, |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 ], | 302 ], |
| 275 "infra_step": true, | 303 "infra_step": true, |
| 276 "name": "remove \"some other dir/*\"" | 304 "name": "remove \"some other dir/*\"" |
| 277 }, | 305 }, |
| 278 { | 306 { |
| 279 "name": "$result", | 307 "name": "$result", |
| 280 "recipe_result": null, | 308 "recipe_result": null, |
| 281 "status_code": 0 | 309 "status_code": 0 |
| 282 } | 310 } |
| 283 ] | 311 ] |
| OLD | NEW |