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

Side by Side Diff: scripts/slave/recipe_modules/git/example.expected/platform_win.json

Issue 24650004: Fix hack for test presentation in path api. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: rebase Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "[BUILD_ROOT]\\scripts\\slave\\git_setup.py", 6 "[BUILD]\\scripts\\slave\\git_setup.py",
7 "--path", 7 "--path",
8 "[SLAVE_BUILD_ROOT]\\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 "--git_cmd_path", 11 "--git_cmd_path",
12 "[DEPOT_TOOLS_ROOT]\\git.bat" 12 "[DEPOT_TOOLS]\\git.bat"
13 ], 13 ],
14 "name": "git setup", 14 "name": "git setup",
15 "seed_steps": [ 15 "seed_steps": [
16 "git setup", 16 "git setup",
17 "git fetch", 17 "git fetch",
18 "git update-ref", 18 "git update-ref",
19 "git clean", 19 "git clean",
20 "git checkout", 20 "git checkout",
21 "git submodule" 21 "git submodule"
22 ] 22 ]
23 }, 23 },
24 { 24 {
25 "cmd": [ 25 "cmd": [
26 "[DEPOT_TOOLS_ROOT]\\git.bat", 26 "[DEPOT_TOOLS]\\git.bat",
27 "fetch", 27 "fetch",
28 "origin", 28 "origin",
29 "--recurse-submodules" 29 "--recurse-submodules"
30 ], 30 ],
31 "cwd": "[SLAVE_BUILD_ROOT]\\src", 31 "cwd": "[SLAVE_BUILD]\\src",
32 "name": "git fetch" 32 "name": "git fetch"
33 }, 33 },
34 { 34 {
35 "cmd": [ 35 "cmd": [
36 "[DEPOT_TOOLS_ROOT]\\git.bat", 36 "[DEPOT_TOOLS]\\git.bat",
37 "update-ref", 37 "update-ref",
38 "refs/heads/master", 38 "refs/heads/master",
39 "origin/master" 39 "origin/master"
40 ], 40 ],
41 "cwd": "[SLAVE_BUILD_ROOT]\\src", 41 "cwd": "[SLAVE_BUILD]\\src",
42 "name": "git update-ref" 42 "name": "git update-ref"
43 }, 43 },
44 { 44 {
45 "cmd": [ 45 "cmd": [
46 "[DEPOT_TOOLS_ROOT]\\git.bat", 46 "[DEPOT_TOOLS]\\git.bat",
47 "clean", 47 "clean",
48 "-f", 48 "-f",
49 "-d", 49 "-d",
50 "-x" 50 "-x"
51 ], 51 ],
52 "cwd": "[SLAVE_BUILD_ROOT]\\src", 52 "cwd": "[SLAVE_BUILD]\\src",
53 "name": "git clean" 53 "name": "git clean"
54 }, 54 },
55 { 55 {
56 "cmd": [ 56 "cmd": [
57 "[DEPOT_TOOLS_ROOT]\\git.bat", 57 "[DEPOT_TOOLS]\\git.bat",
58 "checkout", 58 "checkout",
59 "-f", 59 "-f",
60 "master" 60 "master"
61 ], 61 ],
62 "cwd": "[SLAVE_BUILD_ROOT]\\src", 62 "cwd": "[SLAVE_BUILD]\\src",
63 "name": "git checkout" 63 "name": "git checkout"
64 }, 64 },
65 { 65 {
66 "cmd": [ 66 "cmd": [
67 "[DEPOT_TOOLS_ROOT]\\git.bat", 67 "[DEPOT_TOOLS]\\git.bat",
68 "submodule", 68 "submodule",
69 "update", 69 "update",
70 "--init", 70 "--init",
71 "--recursive" 71 "--recursive"
72 ], 72 ],
73 "cwd": "[SLAVE_BUILD_ROOT]\\src", 73 "cwd": "[SLAVE_BUILD]\\src",
74 "name": "git submodule" 74 "name": "git submodule"
75 }, 75 },
76 { 76 {
77 "cmd": [ 77 "cmd": [
78 "[DEPOT_TOOLS_ROOT]\\git.bat", 78 "[DEPOT_TOOLS]\\git.bat",
79 "status" 79 "status"
80 ], 80 ],
81 "cwd": "[SLAVE_BUILD_ROOT]\\src", 81 "cwd": "[SLAVE_BUILD]\\src",
82 "name": "git status" 82 "name": "git status"
83 } 83 }
84 ] 84 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698