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