OLD | NEW |
(Empty) | |
| 1 [ |
| 2 { |
| 3 "cmd": [ |
| 4 "python", |
| 5 "-u", |
| 6 "RECIPE_MODULE[git]/resources/git_setup.py", |
| 7 "--path", |
| 8 "[SLAVE_BUILD]/src", |
| 9 "--url", |
| 10 "https://chromium.googlesource.com/chromium/src.git" |
| 11 ], |
| 12 "cwd": "[SLAVE_BUILD]", |
| 13 "name": "git setup" |
| 14 }, |
| 15 { |
| 16 "cmd": [ |
| 17 "git", |
| 18 "retry", |
| 19 "fetch", |
| 20 "origin", |
| 21 "master", |
| 22 "--recurse-submodules" |
| 23 ], |
| 24 "cwd": "[SLAVE_BUILD]/src", |
| 25 "name": "git fetch" |
| 26 }, |
| 27 { |
| 28 "cmd": [ |
| 29 "git", |
| 30 "checkout", |
| 31 "-f", |
| 32 "FETCH_HEAD" |
| 33 ], |
| 34 "cwd": "[SLAVE_BUILD]/src", |
| 35 "name": "git checkout" |
| 36 }, |
| 37 { |
| 38 "cmd": [ |
| 39 "git", |
| 40 "clean", |
| 41 "-f", |
| 42 "-d", |
| 43 "-x" |
| 44 ], |
| 45 "cwd": "[SLAVE_BUILD]/src", |
| 46 "name": "git clean" |
| 47 }, |
| 48 { |
| 49 "cmd": [ |
| 50 "git", |
| 51 "submodule", |
| 52 "sync" |
| 53 ], |
| 54 "cwd": "[SLAVE_BUILD]/src", |
| 55 "name": "submodule sync" |
| 56 }, |
| 57 { |
| 58 "cmd": [ |
| 59 "git", |
| 60 "submodule", |
| 61 "update", |
| 62 "--init", |
| 63 "--recursive" |
| 64 ], |
| 65 "cwd": "[SLAVE_BUILD]/src", |
| 66 "name": "submodule update" |
| 67 }, |
| 68 { |
| 69 "cmd": [ |
| 70 "git", |
| 71 "-c", |
| 72 "foo=bar", |
| 73 "count-objects", |
| 74 "-v" |
| 75 ], |
| 76 "cwd": "[SLAVE_BUILD]/src", |
| 77 "name": "count-objects", |
| 78 "stdout": "/path/to/tmp/", |
| 79 "~followup_annotations": [ |
| 80 "@@@STEP_LOG_LINE@exception@ValueError(\"invalid literal for long() with b
ase 10: 'xxx'\",)@@@", |
| 81 "@@@STEP_LOG_END@exception@@@", |
| 82 "@@@STEP_WARNINGS@@@" |
| 83 ] |
| 84 }, |
| 85 { |
| 86 "name": "$result", |
| 87 "reason": "count-objects failed: invalid literal for long() with base 10: 'x
xx'", |
| 88 "status_code": 1 |
| 89 } |
| 90 ] |
OLD | NEW |