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

Side by Side Diff: recipe_modules/git/example.expected/platform_win.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 "RECIPE_PACKAGE_REPO[depot_tools]\\bootstrap\\win\\win_tools.bat" 4 "RECIPE_PACKAGE_REPO[depot_tools]\\bootstrap\\win\\win_tools.bat"
5 ], 5 ],
6 "cwd": "RECIPE_PACKAGE_REPO[depot_tools]", 6 "cwd": "RECIPE_PACKAGE_REPO[depot_tools]",
7 "name": "ensure git tooling on windows", 7 "name": "ensure git tooling on windows",
8 "timeout": 300 8 "timeout": 300
9 }, 9 },
10 { 10 {
(...skipping 13 matching lines...) Expand all
24 { 24 {
25 "cmd": [ 25 "cmd": [
26 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", 26 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
27 "retry", 27 "retry",
28 "fetch", 28 "fetch",
29 "origin", 29 "origin",
30 "master", 30 "master",
31 "--recurse-submodules" 31 "--recurse-submodules"
32 ], 32 ],
33 "cwd": "[SLAVE_BUILD]\\src", 33 "cwd": "[SLAVE_BUILD]\\src",
34 "env": {
35 "PATH": "RECIPE_PACKAGE_REPO[depot_tools];%(PATH)s"
36 },
34 "name": "git fetch" 37 "name": "git fetch"
35 }, 38 },
36 { 39 {
37 "cmd": [ 40 "cmd": [
38 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", 41 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat",
39 "checkout", 42 "checkout",
40 "-f", 43 "-f",
41 "FETCH_HEAD" 44 "FETCH_HEAD"
42 ], 45 ],
43 "cwd": "[SLAVE_BUILD]\\src", 46 "cwd": "[SLAVE_BUILD]\\src",
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 ], 181 ],
179 "cwd": "[SLAVE_BUILD]\\src", 182 "cwd": "[SLAVE_BUILD]\\src",
180 "name": "git bundle" 183 "name": "git bundle"
181 }, 184 },
182 { 185 {
183 "name": "$result", 186 "name": "$result",
184 "recipe_result": null, 187 "recipe_result": null,
185 "status_code": 0 188 "status_code": 0
186 } 189 }
187 ] 190 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698