Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(236)

Side by Side Diff: recipe_modules/git/example.expected/basic_file_name.json

Issue 1693993002: Make git.checkout return the commit hash. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 21 matching lines...) Expand all
32 "FETCH_HEAD", 32 "FETCH_HEAD",
33 "--", 33 "--",
34 "DEPS" 34 "DEPS"
35 ], 35 ],
36 "cwd": "[SLAVE_BUILD]/src", 36 "cwd": "[SLAVE_BUILD]/src",
37 "name": "git checkout" 37 "name": "git checkout"
38 }, 38 },
39 { 39 {
40 "cmd": [ 40 "cmd": [
41 "git", 41 "git",
42 "rev-parse",
43 "HEAD"
44 ],
45 "cwd": "[SLAVE_BUILD]/src",
46 "name": "read revision",
47 "stdout": "/path/to/tmp/",
48 "~followup_annotations": [
49 "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@"
50 ]
51 },
52 {
53 "cmd": [
54 "git",
42 "clean", 55 "clean",
43 "-f", 56 "-f",
44 "-d", 57 "-d",
45 "-x" 58 "-x"
46 ], 59 ],
47 "cwd": "[SLAVE_BUILD]/src", 60 "cwd": "[SLAVE_BUILD]/src",
48 "name": "git clean" 61 "name": "git clean"
49 }, 62 },
50 { 63 {
51 "cmd": [ 64 "cmd": [
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 ], 171 ],
159 "cwd": "[SLAVE_BUILD]/src", 172 "cwd": "[SLAVE_BUILD]/src",
160 "name": "git bundle" 173 "name": "git bundle"
161 }, 174 },
162 { 175 {
163 "name": "$result", 176 "name": "$result",
164 "recipe_result": null, 177 "recipe_result": null,
165 "status_code": 0 178 "status_code": 0
166 } 179 }
167 ] 180 ]
OLDNEW
« no previous file with comments | « recipe_modules/git/example.expected/basic_branch.json ('k') | recipe_modules/git/example.expected/basic_hash.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698