OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "git.bat", | 4 "git.bat", |
5 "remote", | 5 "remote", |
6 "set-url", | 6 "set-url", |
7 "origin", | 7 "origin", |
8 "https://skia.googlesource.com/skia.git" | 8 "https://skia.googlesource.com/skia.git" |
9 ], | 9 ], |
10 "cwd": "[SLAVE_BUILD]\\skia", | 10 "cwd": "[CWD]\\skia", |
11 "name": "git remote set-url" | 11 "name": "git remote set-url" |
12 }, | 12 }, |
13 { | 13 { |
14 "cmd": [ | 14 "cmd": [ |
15 "git.bat", | 15 "git.bat", |
16 "fetch" | 16 "fetch" |
17 ], | 17 ], |
18 "cwd": "[SLAVE_BUILD]\\skia", | 18 "cwd": "[CWD]\\skia", |
19 "name": "git fetch" | 19 "name": "git fetch" |
20 }, | 20 }, |
21 { | 21 { |
22 "cmd": [ | 22 "cmd": [ |
23 "git.bat", | 23 "git.bat", |
24 "reset", | 24 "reset", |
25 "--hard", | 25 "--hard", |
26 "abc123" | 26 "abc123" |
27 ], | 27 ], |
28 "cwd": "[SLAVE_BUILD]\\skia", | 28 "cwd": "[CWD]\\skia", |
29 "name": "git reset" | 29 "name": "git reset" |
30 }, | 30 }, |
31 { | 31 { |
32 "cmd": [ | 32 "cmd": [ |
33 "git.bat", | 33 "git.bat", |
34 "clean", | 34 "clean", |
35 "-d", | 35 "-d", |
36 "-f" | 36 "-f" |
37 ], | 37 ], |
38 "cwd": "[SLAVE_BUILD]\\skia", | 38 "cwd": "[CWD]\\skia", |
39 "name": "git clean" | 39 "name": "git clean" |
40 }, | 40 }, |
41 { | 41 { |
42 "cmd": [ | 42 "cmd": [ |
43 "python", | 43 "python", |
44 "-u", | 44 "-u", |
45 "RECIPE_PACKAGE_REPO[depot_tools]\\gclient.py", | 45 "RECIPE_PACKAGE_REPO[depot_tools]\\gclient.py", |
46 "config", | 46 "config", |
47 "--spec", | 47 "--spec", |
48 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': 'DEPS', 'managed':
False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}]\ntarget
_os = ['llvm']" | 48 "cache_dir = '[ROOT]\\\\b\\\\build\\\\slave\\\\cache_dir'\nsolutions = [{'
deps_file': 'DEPS', 'managed': False, 'name': 'skia', 'url': 'https://skia.googl
esource.com/skia.git'}]\ntarget_os = ['llvm']" |
49 ], | 49 ], |
50 "cwd": "[SLAVE_BUILD]", | |
51 "env": { | 50 "env": { |
52 "PATH": "%(PATH)s;RECIPE_PACKAGE_REPO[depot_tools]" | 51 "PATH": "%(PATH)s;RECIPE_PACKAGE_REPO[depot_tools]" |
53 }, | 52 }, |
54 "name": "gclient setup" | 53 "name": "gclient setup" |
55 }, | 54 }, |
56 { | 55 { |
57 "cmd": [ | 56 "cmd": [ |
58 "python", | 57 "python", |
59 "-u", | 58 "-u", |
60 "RECIPE_PACKAGE_REPO[depot_tools]\\gclient.py", | 59 "RECIPE_PACKAGE_REPO[depot_tools]\\gclient.py", |
61 "sync", | 60 "sync", |
62 "--nohooks", | 61 "--nohooks", |
63 "--force", | 62 "--force", |
64 "--verbose", | 63 "--verbose", |
65 "--delete_unversioned_trees", | 64 "--delete_unversioned_trees", |
66 "--revision", | 65 "--revision", |
67 "skia@abc123", | 66 "skia@abc123", |
68 "--output-json", | 67 "--output-json", |
69 "/path/to/tmp/json" | 68 "/path/to/tmp/json" |
70 ], | 69 ], |
71 "cwd": "[SLAVE_BUILD]", | |
72 "env": { | 70 "env": { |
73 "PATH": "%(PATH)s;RECIPE_PACKAGE_REPO[depot_tools]" | 71 "PATH": "%(PATH)s;RECIPE_PACKAGE_REPO[depot_tools]" |
74 }, | 72 }, |
75 "name": "gclient sync", | 73 "name": "gclient sync", |
76 "~followup_annotations": [ | 74 "~followup_annotations": [ |
77 "@@@STEP_LOG_LINE@json.output@{@@@", | 75 "@@@STEP_LOG_LINE@json.output@{@@@", |
78 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", | 76 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", |
79 "@@@STEP_LOG_LINE@json.output@ \"skia/\": {@@@", | 77 "@@@STEP_LOG_LINE@json.output@ \"skia/\": {@@@", |
80 "@@@STEP_LOG_LINE@json.output@ \"revision\": 164710@@@", | 78 "@@@STEP_LOG_LINE@json.output@ \"revision\": 164710@@@", |
81 "@@@STEP_LOG_LINE@json.output@ }@@@", | 79 "@@@STEP_LOG_LINE@json.output@ }@@@", |
82 "@@@STEP_LOG_LINE@json.output@ }@@@", | 80 "@@@STEP_LOG_LINE@json.output@ }@@@", |
83 "@@@STEP_LOG_LINE@json.output@}@@@", | 81 "@@@STEP_LOG_LINE@json.output@}@@@", |
84 "@@@STEP_LOG_END@json.output@@@", | 82 "@@@STEP_LOG_END@json.output@@@", |
85 "@@@SET_BUILD_PROPERTY@got_revision@164710@@@" | 83 "@@@SET_BUILD_PROPERTY@got_revision@164710@@@" |
86 ] | 84 ] |
87 }, | 85 }, |
88 { | 86 { |
89 "cmd": [ | 87 "cmd": [ |
90 "python", | 88 "python", |
91 "-u", | 89 "-u", |
92 "[SLAVE_BUILD]\\skia\\tools\\buildbot_spec.py", | 90 "[CWD]\\skia\\tools\\buildbot_spec.py", |
93 "/path/to/tmp/json", | 91 "/path/to/tmp/json", |
94 "Build-Win-MSVC-x86-Debug-VS2015" | 92 "Build-Win-MSVC-x86-Debug-VS2015" |
95 ], | 93 ], |
96 "cwd": "[SLAVE_BUILD]\\skia", | 94 "cwd": "[CWD]\\skia", |
97 "name": "exec buildbot_spec.py", | 95 "name": "exec buildbot_spec.py", |
98 "~followup_annotations": [ | 96 "~followup_annotations": [ |
99 "@@@STEP_LOG_LINE@json.output@{@@@", | 97 "@@@STEP_LOG_LINE@json.output@{@@@", |
100 "@@@STEP_LOG_LINE@json.output@ \"build_targets\": [@@@", | 98 "@@@STEP_LOG_LINE@json.output@ \"build_targets\": [@@@", |
101 "@@@STEP_LOG_LINE@json.output@ \"most\"@@@", | 99 "@@@STEP_LOG_LINE@json.output@ \"most\"@@@", |
102 "@@@STEP_LOG_LINE@json.output@ ], @@@", | 100 "@@@STEP_LOG_LINE@json.output@ ], @@@", |
103 "@@@STEP_LOG_LINE@json.output@ \"builder_cfg\": {@@@", | 101 "@@@STEP_LOG_LINE@json.output@ \"builder_cfg\": {@@@", |
104 "@@@STEP_LOG_LINE@json.output@ \"compiler\": \"MSVC\", @@@", | 102 "@@@STEP_LOG_LINE@json.output@ \"compiler\": \"MSVC\", @@@", |
105 "@@@STEP_LOG_LINE@json.output@ \"configuration\": \"Debug\", @@@", | 103 "@@@STEP_LOG_LINE@json.output@ \"configuration\": \"Debug\", @@@", |
106 "@@@STEP_LOG_LINE@json.output@ \"extra_config\": \"VS2015\", @@@", | 104 "@@@STEP_LOG_LINE@json.output@ \"extra_config\": \"VS2015\", @@@", |
(...skipping 18 matching lines...) Expand all Loading... |
125 "@@@STEP_LOG_LINE@json.output@ \"upload_perf_results\": false@@@", | 123 "@@@STEP_LOG_LINE@json.output@ \"upload_perf_results\": false@@@", |
126 "@@@STEP_LOG_LINE@json.output@}@@@", | 124 "@@@STEP_LOG_LINE@json.output@}@@@", |
127 "@@@STEP_LOG_END@json.output@@@" | 125 "@@@STEP_LOG_END@json.output@@@" |
128 ] | 126 ] |
129 }, | 127 }, |
130 { | 128 { |
131 "cmd": [ | 129 "cmd": [ |
132 "python", | 130 "python", |
133 "-u", | 131 "-u", |
134 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 132 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
135 "[SLAVE_BUILD]\\skia\\infra\\bots\\win_toolchain_hash.json", | 133 "[CWD]\\skia\\infra\\bots\\win_toolchain_hash.json", |
136 "/path/to/tmp/" | 134 "/path/to/tmp/" |
137 ], | 135 ], |
138 "cwd": "[SLAVE_BUILD]", | |
139 "name": "Read win_toolchain_hash.json" | 136 "name": "Read win_toolchain_hash.json" |
140 }, | 137 }, |
141 { | 138 { |
142 "cmd": [ | 139 "cmd": [ |
143 "python", | 140 "python", |
144 "-u", | 141 "-u", |
145 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os.
path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not
a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", | 142 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os.
path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not
a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", |
146 "[SLAVE_BUILD]\\tmp", | 143 "[CWD]\\tmp", |
147 "511" | 144 "511" |
148 ], | 145 ], |
149 "cwd": "[SLAVE_BUILD]", | |
150 "name": "makedirs tmp_dir", | 146 "name": "makedirs tmp_dir", |
151 "~followup_annotations": [ | 147 "~followup_annotations": [ |
152 "@@@STEP_LOG_LINE@python.inline@@@@", | 148 "@@@STEP_LOG_LINE@python.inline@@@@", |
153 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 149 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
154 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 150 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
155 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 151 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
156 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 152 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
157 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 153 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
158 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 154 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
159 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 155 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
160 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 156 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
161 "@@@STEP_LOG_END@python.inline@@@" | 157 "@@@STEP_LOG_END@python.inline@@@" |
162 ] | 158 ] |
163 }, | 159 }, |
164 { | 160 { |
165 "cmd": [ | 161 "cmd": [ |
166 "python", | 162 "python", |
167 "-u", | 163 "-u", |
168 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 164 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
169 "[SLAVE_BUILD]\\tmp\\WIN_TOOLCHAIN_HASH", | 165 "[CWD]\\tmp\\WIN_TOOLCHAIN_HASH", |
170 "/path/to/tmp/" | 166 "/path/to/tmp/" |
171 ], | 167 ], |
172 "cwd": "[SLAVE_BUILD]", | |
173 "name": "Get downloaded WIN_TOOLCHAIN_HASH", | 168 "name": "Get downloaded WIN_TOOLCHAIN_HASH", |
174 "~followup_annotations": [ | 169 "~followup_annotations": [ |
175 "step returned non-zero exit code: 1", | 170 "step returned non-zero exit code: 1", |
176 "@@@STEP_EXCEPTION@@@" | 171 "@@@STEP_EXCEPTION@@@" |
177 ] | 172 ] |
178 }, | 173 }, |
179 { | 174 { |
180 "cmd": [ | 175 "cmd": [ |
181 "python", | 176 "python", |
182 "-u", | 177 "-u", |
183 "\nimport os, sys\nfrom common import chromium_utils # Error? See https://
crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveD
irectory(sys.argv[1])\n", | 178 "\nimport os, sys\nfrom common import chromium_utils # Error? See https://
crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveD
irectory(sys.argv[1])\n", |
184 "[SLAVE_BUILD]\\win" | 179 "[CWD]\\win" |
185 ], | 180 ], |
186 "cwd": "[SLAVE_BUILD]", | |
187 "name": "rmtree win", | 181 "name": "rmtree win", |
188 "~followup_annotations": [ | 182 "~followup_annotations": [ |
189 "@@@STEP_LOG_LINE@python.inline@@@@", | 183 "@@@STEP_LOG_LINE@python.inline@@@@", |
190 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", | 184 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", |
191 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", | 185 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", |
192 "@@@STEP_LOG_LINE@python.inline@@@@", | 186 "@@@STEP_LOG_LINE@python.inline@@@@", |
193 "@@@STEP_LOG_LINE@python.inline@@@@", | 187 "@@@STEP_LOG_LINE@python.inline@@@@", |
194 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", | 188 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", |
195 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", | 189 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", |
196 "@@@STEP_LOG_END@python.inline@@@" | 190 "@@@STEP_LOG_END@python.inline@@@" |
197 ] | 191 ] |
198 }, | 192 }, |
199 { | 193 { |
200 "cmd": [ | 194 "cmd": [ |
201 "RECIPE_PACKAGE_REPO[depot_tools]\\bootstrap\\win\\win_tools.bat" | 195 "RECIPE_PACKAGE_REPO[depot_tools]\\bootstrap\\win\\win_tools.bat" |
202 ], | 196 ], |
203 "cwd": "RECIPE_PACKAGE_REPO[depot_tools]", | 197 "cwd": "RECIPE_PACKAGE_REPO[depot_tools]", |
204 "name": "ensure git tooling on windows" | 198 "name": "ensure git tooling on windows" |
205 }, | 199 }, |
206 { | 200 { |
207 "cmd": [ | 201 "cmd": [ |
208 "python", | 202 "python", |
209 "-u", | 203 "-u", |
210 "RECIPE_MODULE[depot_tools::git]\\resources\\git_setup.py", | 204 "RECIPE_MODULE[depot_tools::git]\\resources\\git_setup.py", |
211 "--path", | 205 "--path", |
212 "[SLAVE_BUILD]\\swarming.client", | 206 "[CWD]\\swarming.client", |
213 "--url", | 207 "--url", |
214 "https://chromium.googlesource.com/external/swarming.client.git", | 208 "https://chromium.googlesource.com/external/swarming.client.git", |
215 "--git_cmd_path", | 209 "--git_cmd_path", |
216 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat" | 210 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat" |
217 ], | 211 ], |
218 "cwd": "[SLAVE_BUILD]", | |
219 "name": "git setup (swarming_client)" | 212 "name": "git setup (swarming_client)" |
220 }, | 213 }, |
221 { | 214 { |
222 "cmd": [ | 215 "cmd": [ |
223 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", | 216 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", |
224 "retry", | 217 "retry", |
225 "fetch", | 218 "fetch", |
226 "origin", | 219 "origin", |
227 "master" | 220 "master" |
228 ], | 221 ], |
229 "cwd": "[SLAVE_BUILD]\\swarming.client", | 222 "cwd": "[CWD]\\swarming.client", |
230 "name": "git fetch (swarming_client)" | 223 "name": "git fetch (swarming_client)" |
231 }, | 224 }, |
232 { | 225 { |
233 "cmd": [ | 226 "cmd": [ |
234 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", | 227 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", |
235 "checkout", | 228 "checkout", |
236 "-f", | 229 "-f", |
237 "FETCH_HEAD" | 230 "FETCH_HEAD" |
238 ], | 231 ], |
239 "cwd": "[SLAVE_BUILD]\\swarming.client", | 232 "cwd": "[CWD]\\swarming.client", |
240 "name": "git checkout (swarming_client)" | 233 "name": "git checkout (swarming_client)" |
241 }, | 234 }, |
242 { | 235 { |
243 "cmd": [ | 236 "cmd": [ |
244 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", | 237 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", |
245 "rev-parse", | 238 "rev-parse", |
246 "HEAD" | 239 "HEAD" |
247 ], | 240 ], |
248 "cwd": "[SLAVE_BUILD]\\swarming.client", | 241 "cwd": "[CWD]\\swarming.client", |
249 "name": "read revision", | 242 "name": "read revision", |
250 "stdout": "/path/to/tmp/", | 243 "stdout": "/path/to/tmp/", |
251 "~followup_annotations": [ | 244 "~followup_annotations": [ |
252 "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@" | 245 "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@" |
253 ] | 246 ] |
254 }, | 247 }, |
255 { | 248 { |
256 "cmd": [ | 249 "cmd": [ |
257 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", | 250 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", |
258 "clean", | 251 "clean", |
259 "-f", | 252 "-f", |
260 "-d", | 253 "-d", |
261 "-x" | 254 "-x" |
262 ], | 255 ], |
263 "cwd": "[SLAVE_BUILD]\\swarming.client", | 256 "cwd": "[CWD]\\swarming.client", |
264 "name": "git clean (swarming_client)" | 257 "name": "git clean (swarming_client)" |
265 }, | 258 }, |
266 { | 259 { |
267 "cmd": [ | 260 "cmd": [ |
268 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", | 261 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", |
269 "submodule", | 262 "submodule", |
270 "sync" | 263 "sync" |
271 ], | 264 ], |
272 "cwd": "[SLAVE_BUILD]\\swarming.client", | 265 "cwd": "[CWD]\\swarming.client", |
273 "name": "submodule sync (swarming_client)" | 266 "name": "submodule sync (swarming_client)" |
274 }, | 267 }, |
275 { | 268 { |
276 "cmd": [ | 269 "cmd": [ |
277 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", | 270 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", |
278 "submodule", | 271 "submodule", |
279 "update", | 272 "update", |
280 "--init", | 273 "--init", |
281 "--recursive" | 274 "--recursive" |
282 ], | 275 ], |
283 "cwd": "[SLAVE_BUILD]\\swarming.client", | 276 "cwd": "[CWD]\\swarming.client", |
284 "name": "submodule update (swarming_client)" | 277 "name": "submodule update (swarming_client)" |
285 }, | 278 }, |
286 { | 279 { |
287 "cmd": [ | 280 "cmd": [ |
288 "python", | 281 "python", |
289 "-u", | 282 "-u", |
290 "[SLAVE_BUILD]\\swarming.client\\swarming.py", | 283 "[CWD]\\swarming.client\\swarming.py", |
291 "--version" | 284 "--version" |
292 ], | 285 ], |
293 "cwd": "[SLAVE_BUILD]", | |
294 "name": "swarming.py --version", | 286 "name": "swarming.py --version", |
295 "stdout": "/path/to/tmp/", | 287 "stdout": "/path/to/tmp/", |
296 "~followup_annotations": [ | 288 "~followup_annotations": [ |
297 "@@@STEP_TEXT@0.4.10@@@" | 289 "@@@STEP_TEXT@0.4.10@@@" |
298 ] | 290 ] |
299 }, | 291 }, |
300 { | 292 { |
301 "cmd": [ | 293 "cmd": [ |
302 "python", | 294 "python", |
303 "-u", | 295 "-u", |
304 "[SLAVE_BUILD]\\swarming.client\\isolateserver.py", | 296 "[CWD]\\swarming.client\\isolateserver.py", |
305 "download", | 297 "download", |
306 "-I", | 298 "-I", |
307 "https://isolateserver.appspot.com", | 299 "https://isolateserver.appspot.com", |
308 "-s", | 300 "-s", |
309 "38380d77eec9164e5818ae45e2915a6f22d60e85", | 301 "38380d77eec9164e5818ae45e2915a6f22d60e85", |
310 "-t", | 302 "-t", |
311 "[SLAVE_BUILD]\\win", | 303 "[CWD]\\win", |
312 "--cache", | 304 "--cache", |
313 "[HOME]\\.isolate_cache" | 305 "[HOME]\\.isolate_cache" |
314 ], | 306 ], |
315 "cwd": "[SLAVE_BUILD]", | |
316 "name": "Download Win Toolchain" | 307 "name": "Download Win Toolchain" |
317 }, | 308 }, |
318 { | 309 { |
319 "cmd": [ | 310 "cmd": [ |
320 "python", | 311 "python", |
321 "-u", | 312 "-u", |
322 "[SLAVE_BUILD]\\skia\\infra\\bots\\bootstrap_win_toolchain_json.py", | 313 "[CWD]\\skia\\infra\\bots\\bootstrap_win_toolchain_json.py", |
323 "--win_toolchain_json", | 314 "--win_toolchain_json", |
324 "[SLAVE_BUILD]\\win\\src\\build\\win_toolchain.json", | 315 "[CWD]\\win\\src\\build\\win_toolchain.json", |
325 "--depot_tools_parent_dir", | 316 "--depot_tools_parent_dir", |
326 "[SLAVE_BUILD]\\win" | 317 "[CWD]\\win" |
327 ], | 318 ], |
328 "cwd": "[SLAVE_BUILD]", | |
329 "name": "Bootstrap Win Toolchain" | 319 "name": "Bootstrap Win Toolchain" |
330 }, | 320 }, |
331 { | 321 { |
332 "cmd": [ | 322 "cmd": [ |
333 "python", | 323 "python", |
334 "-u", | 324 "-u", |
335 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 325 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
336 "38380d77eec9164e5818ae45e2915a6f22d60e85", | 326 "38380d77eec9164e5818ae45e2915a6f22d60e85", |
337 "[SLAVE_BUILD]\\tmp\\WIN_TOOLCHAIN_HASH" | 327 "[CWD]\\tmp\\WIN_TOOLCHAIN_HASH" |
338 ], | 328 ], |
339 "cwd": "[SLAVE_BUILD]", | |
340 "name": "write WIN_TOOLCHAIN_HASH" | 329 "name": "write WIN_TOOLCHAIN_HASH" |
341 }, | 330 }, |
342 { | 331 { |
343 "cmd": [ | 332 "cmd": [ |
344 "python", | 333 "python", |
345 "make.py", | 334 "make.py", |
346 "most" | 335 "most" |
347 ], | 336 ], |
348 "cwd": "[SLAVE_BUILD]\\skia", | 337 "cwd": "[CWD]\\skia", |
349 "env": { | 338 "env": { |
350 "BUILDTYPE": "Debug", | 339 "BUILDTYPE": "Debug", |
351 "CHROME_PATH": "[SLAVE_BUILD]\\win\\src", | 340 "CHROME_PATH": "[CWD]\\win\\src", |
352 "GYP_DEFINES": "qt_sdk=C:/Qt/4.8.5/ skia_arch_type=x86 skia_warnings_as_er
rors=1 skia_win_debuggers_path=c:/DbgHelp skia_win_ltcg=0", | 341 "GYP_DEFINES": "qt_sdk=C:/Qt/4.8.5/ skia_arch_type=x86 skia_warnings_as_er
rors=1 skia_win_debuggers_path=c:/DbgHelp skia_win_ltcg=0", |
353 "GYP_MSVS_VERSION": "2015", | 342 "GYP_MSVS_VERSION": "2015", |
354 "PATH": "[SLAVE_BUILD]\\win\\depot_tools;%(PATH)s", | 343 "PATH": "[CWD]\\win\\depot_tools;%(PATH)s", |
355 "SKIA_OUT": "[SLAVE_BUILD]\\skia\\out\\Build-Win-MSVC-x86-Debug-VS2015" | 344 "SKIA_OUT": "[CWD]\\skia\\out\\Build-Win-MSVC-x86-Debug-VS2015" |
356 }, | 345 }, |
357 "name": "build most" | 346 "name": "build most" |
358 }, | 347 }, |
359 { | 348 { |
360 "name": "$result", | 349 "name": "$result", |
361 "recipe_result": null, | 350 "recipe_result": null, |
362 "status_code": 0 | 351 "status_code": 0 |
363 } | 352 } |
364 ] | 353 ] |
OLD | NEW |