| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py", | 6 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py", |
| 7 "--path", | 7 "--path", |
| 8 "[SLAVE_BUILD]/src", | 8 "[SLAVE_BUILD]/src", |
| 9 "--url", | 9 "--url", |
| 10 "https://chromium.googlesource.com/chromium/src.git" | 10 "https://chromium.googlesource.com/chromium/src.git" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 "checkout", | 30 "checkout", |
| 31 "-f", | 31 "-f", |
| 32 "FETCH_HEAD" | 32 "FETCH_HEAD" |
| 33 ], | 33 ], |
| 34 "cwd": "[SLAVE_BUILD]/src", | 34 "cwd": "[SLAVE_BUILD]/src", |
| 35 "name": "git checkout" | 35 "name": "git checkout" |
| 36 }, | 36 }, |
| 37 { | 37 { |
| 38 "cmd": [ | 38 "cmd": [ |
| 39 "git", | 39 "git", |
| 40 "rev-parse", |
| 41 "HEAD" |
| 42 ], |
| 43 "cwd": "[SLAVE_BUILD]/src", |
| 44 "name": "read revision", |
| 45 "stdout": "/path/to/tmp/", |
| 46 "~followup_annotations": [ |
| 47 "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@" |
| 48 ] |
| 49 }, |
| 50 { |
| 51 "cmd": [ |
| 52 "git", |
| 40 "clean", | 53 "clean", |
| 41 "-f", | 54 "-f", |
| 42 "-d", | 55 "-d", |
| 43 "-x" | 56 "-x" |
| 44 ], | 57 ], |
| 45 "cwd": "[SLAVE_BUILD]/src", | 58 "cwd": "[SLAVE_BUILD]/src", |
| 46 "name": "git clean" | 59 "name": "git clean" |
| 47 }, | 60 }, |
| 48 { | 61 { |
| 49 "cmd": [ | 62 "cmd": [ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "@@@STEP_LOG_END@exception@@@", | 94 "@@@STEP_LOG_END@exception@@@", |
| 82 "@@@STEP_WARNINGS@@@" | 95 "@@@STEP_WARNINGS@@@" |
| 83 ] | 96 ] |
| 84 }, | 97 }, |
| 85 { | 98 { |
| 86 "name": "$result", | 99 "name": "$result", |
| 87 "reason": "count-objects failed: invalid literal for long() with base 10: 'x
xx'", | 100 "reason": "count-objects failed: invalid literal for long() with base 10: 'x
xx'", |
| 88 "status_code": 1 | 101 "status_code": 1 |
| 89 } | 102 } |
| 90 ] | 103 ] |
| OLD | NEW |