OLD | NEW |
(Empty) | |
| 1 [ |
| 2 { |
| 3 "cmd": [ |
| 4 "python", |
| 5 "-u", |
| 6 "[BUILD]/scripts/slave/git_setup.py", |
| 7 "--path", |
| 8 "[SLAVE_BUILD]/src", |
| 9 "--url", |
| 10 "https://chromium.googlesource.com/chromium/src.git" |
| 11 ], |
| 12 "name": "git setup" |
| 13 }, |
| 14 { |
| 15 "cmd": [ |
| 16 "git", |
| 17 "retry", |
| 18 "fetch", |
| 19 "origin", |
| 20 "master", |
| 21 "--recurse-submodules" |
| 22 ], |
| 23 "cwd": "[SLAVE_BUILD]/src", |
| 24 "name": "git fetch" |
| 25 }, |
| 26 { |
| 27 "cmd": [ |
| 28 "git", |
| 29 "checkout", |
| 30 "-f", |
| 31 "FETCH_HEAD" |
| 32 ], |
| 33 "cwd": "[SLAVE_BUILD]/src", |
| 34 "name": "git checkout" |
| 35 }, |
| 36 { |
| 37 "cmd": [ |
| 38 "git", |
| 39 "clean", |
| 40 "-f", |
| 41 "-d", |
| 42 "-x" |
| 43 ], |
| 44 "cwd": "[SLAVE_BUILD]/src", |
| 45 "name": "git clean" |
| 46 }, |
| 47 { |
| 48 "cmd": [ |
| 49 "git", |
| 50 "submodule", |
| 51 "sync" |
| 52 ], |
| 53 "cwd": "[SLAVE_BUILD]/src", |
| 54 "name": "submodule sync" |
| 55 }, |
| 56 { |
| 57 "cmd": [ |
| 58 "git", |
| 59 "submodule", |
| 60 "update", |
| 61 "--init", |
| 62 "--recursive" |
| 63 ], |
| 64 "cwd": "[SLAVE_BUILD]/src", |
| 65 "name": "submodule update" |
| 66 }, |
| 67 { |
| 68 "cmd": [ |
| 69 "git", |
| 70 "count-objects", |
| 71 "-v" |
| 72 ], |
| 73 "cwd": "[SLAVE_BUILD]/src", |
| 74 "name": "count-objects", |
| 75 "stdout": "/path/to/tmp/", |
| 76 "~followup_annotations": [ |
| 77 "step returned non-zero exit code: 1", |
| 78 "@@@STEP_EXCEPTION@@@" |
| 79 ] |
| 80 }, |
| 81 { |
| 82 "name": "$final_result", |
| 83 "reason": "Infra Failure: Step('count-objects') returned 1", |
| 84 "status_code": 1 |
| 85 } |
| 86 ] |
OLD | NEW |