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 "refs/foo/bar", |
| 22 "--recurse-submodules" |
| 23 ], |
| 24 "cwd": "[SLAVE_BUILD]/src", |
| 25 "env": { |
| 26 "GIT_CURL_VERBOSE": "1" |
| 27 }, |
| 28 "name": "git fetch", |
| 29 "stderr": "[SLAVE_BUILD]/curl_trace.log" |
| 30 }, |
| 31 { |
| 32 "cmd": [ |
| 33 "git", |
| 34 "checkout", |
| 35 "-f", |
| 36 "FETCH_HEAD" |
| 37 ], |
| 38 "cwd": "[SLAVE_BUILD]/src", |
| 39 "name": "git checkout" |
| 40 }, |
| 41 { |
| 42 "cmd": [ |
| 43 "git", |
| 44 "clean", |
| 45 "-f", |
| 46 "-d", |
| 47 "-x" |
| 48 ], |
| 49 "cwd": "[SLAVE_BUILD]/src", |
| 50 "name": "git clean" |
| 51 }, |
| 52 { |
| 53 "cmd": [ |
| 54 "git", |
| 55 "submodule", |
| 56 "sync" |
| 57 ], |
| 58 "cwd": "[SLAVE_BUILD]/src", |
| 59 "name": "submodule sync" |
| 60 }, |
| 61 { |
| 62 "cmd": [ |
| 63 "git", |
| 64 "submodule", |
| 65 "update", |
| 66 "--init", |
| 67 "--recursive" |
| 68 ], |
| 69 "cwd": "[SLAVE_BUILD]/src", |
| 70 "name": "submodule update" |
| 71 }, |
| 72 { |
| 73 "cmd": [ |
| 74 "git", |
| 75 "-c", |
| 76 "foo=bar", |
| 77 "count-objects", |
| 78 "-v" |
| 79 ], |
| 80 "cwd": "[SLAVE_BUILD]/src", |
| 81 "name": "count-objects", |
| 82 "stdout": "/path/to/tmp/" |
| 83 }, |
| 84 { |
| 85 "cmd": [ |
| 86 "git", |
| 87 "config", |
| 88 "--get", |
| 89 "remote.origin.url" |
| 90 ], |
| 91 "cwd": "[SLAVE_BUILD]/src", |
| 92 "name": "git config remote.origin.url", |
| 93 "stdout": "/path/to/tmp/", |
| 94 "~followup_annotations": [ |
| 95 "@@@STEP_TEXT@foo@@@" |
| 96 ] |
| 97 }, |
| 98 { |
| 99 "cmd": [ |
| 100 "git", |
| 101 "show", |
| 102 "HEAD", |
| 103 "--format=%at", |
| 104 "-s" |
| 105 ], |
| 106 "cwd": "[SLAVE_BUILD]/src", |
| 107 "name": "git show", |
| 108 "stdout": "/path/to/tmp/" |
| 109 }, |
| 110 { |
| 111 "cmd": [ |
| 112 "git", |
| 113 "fetch", |
| 114 "origin", |
| 115 "--tags" |
| 116 ], |
| 117 "cwd": "[SLAVE_BUILD]/src", |
| 118 "name": "git fetch tags" |
| 119 }, |
| 120 { |
| 121 "cmd": [ |
| 122 "git", |
| 123 "status" |
| 124 ], |
| 125 "cwd": "[SLAVE_BUILD]/src", |
| 126 "name": "git status" |
| 127 }, |
| 128 { |
| 129 "cmd": [ |
| 130 "git", |
| 131 "status" |
| 132 ], |
| 133 "cwd": "[SLAVE_BUILD]/src", |
| 134 "name": "git status can_fail_build" |
| 135 }, |
| 136 { |
| 137 "cmd": [ |
| 138 "git", |
| 139 "status" |
| 140 ], |
| 141 "cwd": "[SLAVE_BUILD]/src", |
| 142 "name": "git status cannot_fail_build" |
| 143 }, |
| 144 { |
| 145 "cmd": [ |
| 146 "git", |
| 147 "rebase", |
| 148 "origin/master" |
| 149 ], |
| 150 "cwd": "[SLAVE_BUILD]/src", |
| 151 "name": "my repo rebase" |
| 152 }, |
| 153 { |
| 154 "cmd": [ |
| 155 "git", |
| 156 "bundle", |
| 157 "create", |
| 158 "[SLAVE_BUILD]/all.bundle", |
| 159 "--all" |
| 160 ], |
| 161 "cwd": "[SLAVE_BUILD]/src", |
| 162 "name": "git bundle" |
| 163 }, |
| 164 { |
| 165 "name": "$result", |
| 166 "recipe_result": null, |
| 167 "status_code": 0 |
| 168 } |
| 169 ] |
OLD | NEW |