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

Side by Side Diff: recipe_modules/git/example.expected/count-objects_delta.json

Issue 2192163002: Make git recipe api add depot_tools to PATH (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Use package_repo_resource Created 4 years, 4 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 24 matching lines...) Expand all
35 { 35 {
36 "cmd": [ 36 "cmd": [
37 "git", 37 "git",
38 "retry", 38 "retry",
39 "fetch", 39 "fetch",
40 "origin", 40 "origin",
41 "master", 41 "master",
42 "--recurse-submodules" 42 "--recurse-submodules"
43 ], 43 ],
44 "cwd": "[SLAVE_BUILD]/src", 44 "cwd": "[SLAVE_BUILD]/src",
45 "env": {
46 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s"
47 },
45 "name": "git fetch" 48 "name": "git fetch"
46 }, 49 },
47 { 50 {
48 "cmd": [ 51 "cmd": [
49 "git", 52 "git",
50 "count-objects", 53 "count-objects",
51 "-v" 54 "-v"
52 ], 55 ],
53 "cwd": "[SLAVE_BUILD]/src", 56 "cwd": "[SLAVE_BUILD]/src",
54 "name": "count-objects after git fetch", 57 "name": "count-objects after git fetch",
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 ], 244 ],
242 "cwd": "[SLAVE_BUILD]/src", 245 "cwd": "[SLAVE_BUILD]/src",
243 "name": "git bundle" 246 "name": "git bundle"
244 }, 247 },
245 { 248 {
246 "name": "$result", 249 "name": "$result",
247 "recipe_result": null, 250 "recipe_result": null,
248 "status_code": 0 251 "status_code": 0
249 } 252 }
250 ] 253 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698