OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "[DEPOT_TOOLS]/repo", | 4 "[ROOT]/b/depot_tools/repo", |
5 "init", | 5 "init", |
6 "-u", | 6 "-u", |
7 "http://manifest_url" | 7 "http://manifest_url" |
8 ], | 8 ], |
9 "cwd": "[SLAVE_BUILD]", | |
10 "name": "repo init" | 9 "name": "repo init" |
11 }, | 10 }, |
12 { | 11 { |
13 "cmd": [ | 12 "cmd": [ |
14 "[DEPOT_TOOLS]/repo", | 13 "[ROOT]/b/depot_tools/repo", |
15 "init", | 14 "init", |
16 "-u", | 15 "-u", |
17 "http://manifest_url/manifest", | 16 "http://manifest_url/manifest", |
18 "-b", | 17 "-b", |
19 "branch" | 18 "branch" |
20 ], | 19 ], |
21 "cwd": "[SLAVE_BUILD]", | |
22 "name": "repo init (2)" | 20 "name": "repo init (2)" |
23 }, | 21 }, |
24 { | 22 { |
25 "cmd": [ | 23 "cmd": [ |
26 "[DEPOT_TOOLS]/repo", | 24 "[ROOT]/b/depot_tools/repo", |
27 "forall", | 25 "forall", |
28 "-c", | 26 "-c", |
29 "git", | 27 "git", |
30 "reset", | 28 "reset", |
31 "--hard", | 29 "--hard", |
32 "HEAD" | 30 "HEAD" |
33 ], | 31 ], |
34 "cwd": "[SLAVE_BUILD]", | |
35 "name": "repo forall git reset" | 32 "name": "repo forall git reset" |
36 }, | 33 }, |
37 { | 34 { |
38 "cmd": [ | 35 "cmd": [ |
39 "[DEPOT_TOOLS]/repo", | 36 "[ROOT]/b/depot_tools/repo", |
40 "forall", | 37 "forall", |
41 "-c", | 38 "-c", |
42 "git", | 39 "git", |
43 "clean", | 40 "clean", |
44 "-f", | 41 "-f", |
45 "-d" | 42 "-d" |
46 ], | 43 ], |
47 "cwd": "[SLAVE_BUILD]", | |
48 "name": "repo forall git clean" | 44 "name": "repo forall git clean" |
49 }, | 45 }, |
50 { | 46 { |
51 "cmd": [ | 47 "cmd": [ |
52 "[DEPOT_TOOLS]/repo", | 48 "[ROOT]/b/depot_tools/repo", |
53 "forall", | 49 "forall", |
54 "-c", | 50 "-c", |
55 "git", | 51 "git", |
56 "clean", | 52 "clean", |
57 "-f", | 53 "-f", |
58 "-d", | 54 "-d", |
59 "-x" | 55 "-x" |
60 ], | 56 ], |
61 "cwd": "[SLAVE_BUILD]", | |
62 "name": "repo forall git clean (2)" | 57 "name": "repo forall git clean (2)" |
63 }, | 58 }, |
64 { | 59 { |
65 "cmd": [ | 60 "cmd": [ |
66 "[DEPOT_TOOLS]/repo", | 61 "[ROOT]/b/depot_tools/repo", |
67 "sync" | 62 "sync" |
68 ], | 63 ], |
69 "cwd": "[SLAVE_BUILD]", | |
70 "name": "repo sync" | 64 "name": "repo sync" |
71 }, | 65 }, |
72 { | 66 { |
73 "cmd": [ | 67 "cmd": [ |
74 "[DEPOT_TOOLS]/repo", | 68 "[ROOT]/b/depot_tools/repo", |
75 "list" | 69 "list" |
76 ], | 70 ], |
77 "cwd": "[SLAVE_BUILD]", | |
78 "name": "repo list", | 71 "name": "repo list", |
79 "stdout": "/path/to/tmp/", | 72 "stdout": "/path/to/tmp/", |
80 "~followup_annotations": [ | 73 "~followup_annotations": [ |
81 "@@@STEP_TEXT@</br></br>src/foo : foo</br>src/bar : bar@@@" | 74 "@@@STEP_TEXT@</br></br>src/foo : foo</br>src/bar : bar@@@" |
82 ] | 75 ] |
83 }, | 76 }, |
84 { | 77 { |
85 "cmd": [ | 78 "cmd": [ |
86 "echo", | 79 "echo", |
87 "[('src/foo', 'foo'), ('src/bar', 'bar')]" | 80 "[('src/foo', 'foo'), ('src/bar', 'bar')]" |
88 ], | 81 ], |
89 "cwd": "[SLAVE_BUILD]", | |
90 "name": "repo list echo" | 82 "name": "repo list echo" |
91 }, | 83 }, |
92 { | 84 { |
93 "name": "$result", | 85 "name": "$result", |
94 "recipe_result": null, | 86 "recipe_result": null, |
95 "status_code": 0 | 87 "status_code": 0 |
96 } | 88 } |
97 ] | 89 ] |
OLD | NEW |