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

Side by Side Diff: recipe_modules/git/example.expected/git-cache-checkout.json

Issue 2173823002: git recipe_module: add experimental git-cache support. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: improved Created 4 years, 5 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
« no previous file with comments | « recipe_modules/git/example.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
11 ], 11 ],
12 "name": "git setup" 12 "name": "git setup"
13 }, 13 },
14 { 14 {
15 "cmd": [ 15 "cmd": [
16 "git", 16 "git",
17 "retry", 17 "retry",
18 "cache",
19 "fetch",
20 "-c",
21 "[GIT_CACHE]"
22 ],
23 "cwd": "[SLAVE_BUILD]/src",
24 "name": "fetch cache"
25 },
26 {
27 "cmd": [
28 "git",
29 "retry",
18 "fetch", 30 "fetch",
19 "origin", 31 "origin",
20 "master", 32 "master",
21 "--recurse-submodules" 33 "--recurse-submodules"
22 ], 34 ],
23 "cwd": "[SLAVE_BUILD]/src", 35 "cwd": "[SLAVE_BUILD]/src",
24 "name": "git fetch" 36 "name": "git fetch"
25 }, 37 },
26 { 38 {
27 "cmd": [ 39 "cmd": [
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 ], 180 ],
169 "cwd": "[SLAVE_BUILD]/src", 181 "cwd": "[SLAVE_BUILD]/src",
170 "name": "git bundle" 182 "name": "git bundle"
171 }, 183 },
172 { 184 {
173 "name": "$result", 185 "name": "$result",
174 "recipe_result": null, 186 "recipe_result": null,
175 "status_code": 0 187 "status_code": 0
176 } 188 }
177 ] 189 ]
OLDNEW
« no previous file with comments | « recipe_modules/git/example.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698