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

Side by Side Diff: scripts/slave/recipes/run_presubmit.expected/tools_build.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 "[DEPOT_TOOLS_ROOT]/gclient.py", 6 "[DEPOT_TOOLS]/gclient.py",
7 "config", 7 "config",
8 "--spec", 8 "--spec",
9 "cache_dir = '[ROOT]/git_cache'\nsolutions = [{'deps_file': '.DEPS.git', ' managed': True, 'name': 'build', 'url': 'https://chromium.googlesource.com/chrom ium/tools/build.git'}]" 9 "cache_dir = '[ROOT]/git_cache'\nsolutions = [{'deps_file': '.DEPS.git', ' managed': True, 'name': 'build', 'url': 'https://chromium.googlesource.com/chrom ium/tools/build.git'}]"
10 ], 10 ],
11 "name": "gclient setup", 11 "name": "gclient setup",
12 "seed_steps": [ 12 "seed_steps": [
13 "gclient setup", 13 "gclient setup",
14 "gclient sync", 14 "gclient sync",
15 "gclient recurse (git config user.name)", 15 "gclient recurse (git config user.name)",
16 "gclient recurse (git config user.email)" 16 "gclient recurse (git config user.email)"
17 ] 17 ]
18 }, 18 },
19 { 19 {
20 "cmd": [ 20 "cmd": [
21 "python", 21 "python",
22 "-u", 22 "-u",
23 "[DEPOT_TOOLS_ROOT]/gclient.py", 23 "[DEPOT_TOOLS]/gclient.py",
24 "sync", 24 "sync",
25 "--verbose", 25 "--verbose",
26 "--with_branch_heads", 26 "--with_branch_heads",
27 "--nohooks", 27 "--nohooks",
28 "-j8", 28 "-j8",
29 "--reset", 29 "--reset",
30 "--delete_unversioned_trees", 30 "--delete_unversioned_trees",
31 "--force", 31 "--force",
32 "--upstream", 32 "--upstream",
33 "--no-nag-max", 33 "--no-nag-max",
34 "--output-json", 34 "--output-json",
35 "/path/to/tmp/json" 35 "/path/to/tmp/json"
36 ], 36 ],
37 "name": "gclient sync", 37 "name": "gclient sync",
38 "~followup_annotations": [ 38 "~followup_annotations": [
39 "@@@STEP_LOG_LINE@json.output@{@@@", 39 "@@@STEP_LOG_LINE@json.output@{@@@",
40 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {}@@@", 40 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {}@@@",
41 "@@@STEP_LOG_LINE@json.output@}@@@", 41 "@@@STEP_LOG_LINE@json.output@}@@@",
42 "@@@STEP_LOG_END@json.output@@@" 42 "@@@STEP_LOG_END@json.output@@@"
43 ] 43 ]
44 }, 44 },
45 { 45 {
46 "cmd": [ 46 "cmd": [
47 "python", 47 "python",
48 "-u", 48 "-u",
49 "[DEPOT_TOOLS_ROOT]/gclient.py", 49 "[DEPOT_TOOLS]/gclient.py",
50 "recurse", 50 "recurse",
51 "git", 51 "git",
52 "config", 52 "config",
53 "user.name", 53 "user.name",
54 "local_bot" 54 "local_bot"
55 ], 55 ],
56 "name": "gclient recurse (git config user.name)" 56 "name": "gclient recurse (git config user.name)"
57 }, 57 },
58 { 58 {
59 "cmd": [ 59 "cmd": [
60 "python", 60 "python",
61 "-u", 61 "-u",
62 "[DEPOT_TOOLS_ROOT]/gclient.py", 62 "[DEPOT_TOOLS]/gclient.py",
63 "recurse", 63 "recurse",
64 "git", 64 "git",
65 "config", 65 "config",
66 "user.email", 66 "user.email",
67 "local_bot@example.com" 67 "local_bot@example.com"
68 ], 68 ],
69 "name": "gclient recurse (git config user.email)" 69 "name": "gclient recurse (git config user.email)"
70 }, 70 },
71 { 71 {
72 "cmd": [ 72 "cmd": [
73 "git", 73 "git",
74 "config", 74 "config",
75 "user.email", 75 "user.email",
76 "commit-bot@chromium.org" 76 "commit-bot@chromium.org"
77 ], 77 ],
78 "cwd": "[SLAVE_BUILD_ROOT]/build", 78 "cwd": "[SLAVE_BUILD]/build",
79 "name": "git config user.email", 79 "name": "git config user.email",
80 "seed_steps": [ 80 "seed_steps": [
81 "git config user.email", 81 "git config user.email",
82 "git config user.name", 82 "git config user.name",
83 "git clean" 83 "git clean"
84 ] 84 ]
85 }, 85 },
86 { 86 {
87 "cmd": [ 87 "cmd": [
88 "git", 88 "git",
89 "config", 89 "config",
90 "user.name", 90 "user.name",
91 "The Commit Bot" 91 "The Commit Bot"
92 ], 92 ],
93 "cwd": "[SLAVE_BUILD_ROOT]/build", 93 "cwd": "[SLAVE_BUILD]/build",
94 "name": "git config user.name" 94 "name": "git config user.name"
95 }, 95 },
96 { 96 {
97 "cmd": [ 97 "cmd": [
98 "git", 98 "git",
99 "clean", 99 "clean",
100 "-xfq" 100 "-xfq"
101 ], 101 ],
102 "cwd": "[SLAVE_BUILD_ROOT]/build", 102 "cwd": "[SLAVE_BUILD]/build",
103 "name": "git clean" 103 "name": "git clean"
104 }, 104 },
105 { 105 {
106 "cmd": [ 106 "cmd": [
107 "python", 107 "python",
108 "-u", 108 "-u",
109 "[DEPOT_TOOLS_ROOT]/apply_issue.py", 109 "[DEPOT_TOOLS]/apply_issue.py",
110 "-r", 110 "-r",
111 "[SLAVE_BUILD_ROOT]/build", 111 "[SLAVE_BUILD]/build",
112 "-i", 112 "-i",
113 "12853011", 113 "12853011",
114 "-p", 114 "-p",
115 "1", 115 "1",
116 "-s", 116 "-s",
117 "https://codereview.chromium.org", 117 "https://codereview.chromium.org",
118 "--no-auth" 118 "--no-auth"
119 ], 119 ],
120 "name": "apply_issue" 120 "name": "apply_issue"
121 }, 121 },
122 { 122 {
123 "cmd": [ 123 "cmd": [
124 "[DEPOT_TOOLS_ROOT]/presubmit_support.py", 124 "[DEPOT_TOOLS]/presubmit_support.py",
125 "--root", 125 "--root",
126 "[SLAVE_BUILD_ROOT]/build", 126 "[SLAVE_BUILD]/build",
127 "--commit", 127 "--commit",
128 "--verbose", 128 "--verbose",
129 "--verbose", 129 "--verbose",
130 "--issue", 130 "--issue",
131 "12853011", 131 "12853011",
132 "--patchset", 132 "--patchset",
133 "1", 133 "1",
134 "--skip_canned", 134 "--skip_canned",
135 "CheckRietveldTryJobExecution", 135 "CheckRietveldTryJobExecution",
136 "--skip_canned", 136 "--skip_canned",
137 "CheckTreeIsOpen", 137 "CheckTreeIsOpen",
138 "--skip_canned", 138 "--skip_canned",
139 "CheckBuildbotPendingBuilds", 139 "CheckBuildbotPendingBuilds",
140 "--rietveld_url", 140 "--rietveld_url",
141 "https://codereview.chromium.org", 141 "https://codereview.chromium.org",
142 "--rietveld_email", 142 "--rietveld_email",
143 "", 143 "",
144 "--rietveld_fetch" 144 "--rietveld_fetch"
145 ], 145 ],
146 "name": "presubmit" 146 "name": "presubmit"
147 } 147 }
148 ] 148 ]
OLDNEW
« no previous file with comments | « scripts/slave/recipes/run_presubmit.expected/chromium.json ('k') | scripts/slave/recipes/v8.expected/Debug32.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698