OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "git", | 4 "git", |
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", | 15 "git", |
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", | 23 "git", |
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", | 33 "git", |
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.googlesource.com/
skia.git'}, {'deps_file': 'DEPS', 'managed': False, 'name': 'src', 'url': 'https
://chromium.googlesource.com/chromium/src.git'}]\ntarget_os = ['llvm']" | 48 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': 'DEPS', 'managed':
False, 'name': 'skia', 'url': 'https://skia.googlesource.com/skia.git'}, {'deps_
file': 'DEPS', 'managed': False, 'name': 'src', 'url': 'https://chromium.googles
ource.com/chromium/src.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 "--revision", | 68 "--revision", |
68 "src@origin/lkgr", | 69 "src@origin/lkgr", |
69 "--output-json", | 70 "--output-json", |
70 "/path/to/tmp/json" | 71 "/path/to/tmp/json" |
71 ], | 72 ], |
| 73 "cwd": "[SLAVE_BUILD]", |
72 "env": { | 74 "env": { |
73 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 75 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
74 }, | 76 }, |
75 "name": "gclient sync", | 77 "name": "gclient sync", |
76 "~followup_annotations": [ | 78 "~followup_annotations": [ |
77 "@@@STEP_LOG_LINE@json.output@{@@@", | 79 "@@@STEP_LOG_LINE@json.output@{@@@", |
78 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", | 80 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", |
79 "@@@STEP_LOG_LINE@json.output@ \"skia/\": {@@@", | 81 "@@@STEP_LOG_LINE@json.output@ \"skia/\": {@@@", |
80 "@@@STEP_LOG_LINE@json.output@ \"revision\": 164710@@@", | 82 "@@@STEP_LOG_LINE@json.output@ \"revision\": 164710@@@", |
81 "@@@STEP_LOG_LINE@json.output@ }, @@@", | 83 "@@@STEP_LOG_LINE@json.output@ }, @@@", |
82 "@@@STEP_LOG_LINE@json.output@ \"src/\": {@@@", | 84 "@@@STEP_LOG_LINE@json.output@ \"src/\": {@@@", |
83 "@@@STEP_LOG_LINE@json.output@ \"revision\": 170242@@@", | 85 "@@@STEP_LOG_LINE@json.output@ \"revision\": 170242@@@", |
84 "@@@STEP_LOG_LINE@json.output@ }@@@", | 86 "@@@STEP_LOG_LINE@json.output@ }@@@", |
85 "@@@STEP_LOG_LINE@json.output@ }@@@", | 87 "@@@STEP_LOG_LINE@json.output@ }@@@", |
86 "@@@STEP_LOG_LINE@json.output@}@@@", | 88 "@@@STEP_LOG_LINE@json.output@}@@@", |
87 "@@@STEP_LOG_END@json.output@@@", | 89 "@@@STEP_LOG_END@json.output@@@", |
88 "@@@SET_BUILD_PROPERTY@got_revision@164710@@@" | 90 "@@@SET_BUILD_PROPERTY@got_revision@164710@@@" |
89 ] | 91 ] |
90 }, | 92 }, |
91 { | 93 { |
92 "cmd": [ | 94 "cmd": [ |
93 "python", | 95 "python", |
94 "-u", | 96 "-u", |
95 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 97 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
96 "runhooks" | 98 "runhooks" |
97 ], | 99 ], |
| 100 "cwd": "[SLAVE_BUILD]", |
98 "env": { | 101 "env": { |
99 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 102 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
100 }, | 103 }, |
101 "name": "gclient runhooks" | 104 "name": "gclient runhooks" |
102 }, | 105 }, |
103 { | 106 { |
104 "cmd": [ | 107 "cmd": [ |
105 "python", | 108 "python", |
106 "-u", | 109 "-u", |
107 "[CWD]/skia/tools/buildbot_spec.py", | 110 "[SLAVE_BUILD]/skia/tools/buildbot_spec.py", |
108 "/path/to/tmp/json", | 111 "/path/to/tmp/json", |
109 "Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandBuffer" | 112 "Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandBuffer" |
110 ], | 113 ], |
111 "cwd": "[CWD]/skia", | 114 "cwd": "[SLAVE_BUILD]/skia", |
112 "name": "exec buildbot_spec.py", | 115 "name": "exec buildbot_spec.py", |
113 "~followup_annotations": [ | 116 "~followup_annotations": [ |
114 "@@@STEP_LOG_LINE@json.output@{@@@", | 117 "@@@STEP_LOG_LINE@json.output@{@@@", |
115 "@@@STEP_LOG_LINE@json.output@ \"build_targets\": [@@@", | 118 "@@@STEP_LOG_LINE@json.output@ \"build_targets\": [@@@", |
116 "@@@STEP_LOG_LINE@json.output@ \"dm\", @@@", | 119 "@@@STEP_LOG_LINE@json.output@ \"dm\", @@@", |
117 "@@@STEP_LOG_LINE@json.output@ \"nanobench\"@@@", | 120 "@@@STEP_LOG_LINE@json.output@ \"nanobench\"@@@", |
118 "@@@STEP_LOG_LINE@json.output@ ], @@@", | 121 "@@@STEP_LOG_LINE@json.output@ ], @@@", |
119 "@@@STEP_LOG_LINE@json.output@ \"builder_cfg\": {@@@", | 122 "@@@STEP_LOG_LINE@json.output@ \"builder_cfg\": {@@@", |
120 "@@@STEP_LOG_LINE@json.output@ \"arch\": \"x86_64\", @@@", | 123 "@@@STEP_LOG_LINE@json.output@ \"arch\": \"x86_64\", @@@", |
121 "@@@STEP_LOG_LINE@json.output@ \"compiler\": \"Clang\", @@@", | 124 "@@@STEP_LOG_LINE@json.output@ \"compiler\": \"Clang\", @@@", |
(...skipping 24 matching lines...) Expand all Loading... |
146 "@@@STEP_LOG_LINE@json.output@ \"upload_perf_results\": false@@@", | 149 "@@@STEP_LOG_LINE@json.output@ \"upload_perf_results\": false@@@", |
147 "@@@STEP_LOG_LINE@json.output@}@@@", | 150 "@@@STEP_LOG_LINE@json.output@}@@@", |
148 "@@@STEP_LOG_END@json.output@@@" | 151 "@@@STEP_LOG_END@json.output@@@" |
149 ] | 152 ] |
150 }, | 153 }, |
151 { | 154 { |
152 "cmd": [ | 155 "cmd": [ |
153 "make", | 156 "make", |
154 "dm" | 157 "dm" |
155 ], | 158 ], |
156 "cwd": "[CWD]/skia", | 159 "cwd": "[SLAVE_BUILD]/skia", |
157 "env": { | 160 "env": { |
158 "BUILDTYPE": "Debug", | 161 "BUILDTYPE": "Debug", |
159 "CC": "/usr/bin/clang", | 162 "CC": "/usr/bin/clang", |
160 "CHROME_PATH": "[HOME]/src", | 163 "CHROME_PATH": "[HOME]/src", |
161 "CXX": "/usr/bin/clang++", | 164 "CXX": "/usr/bin/clang++", |
162 "GYP_DEFINES": "skia_arch_type=x86_64 skia_clang_build=1 skia_command_buff
er=1 skia_warnings_as_errors=0", | 165 "GYP_DEFINES": "skia_arch_type=x86_64 skia_clang_build=1 skia_command_buff
er=1 skia_warnings_as_errors=0", |
163 "SKIA_OUT": "[CWD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-De
bug-CommandBuffer" | 166 "SKIA_OUT": "[SLAVE_BUILD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x
86_64-Debug-CommandBuffer" |
164 }, | 167 }, |
165 "name": "build dm" | 168 "name": "build dm" |
166 }, | 169 }, |
167 { | 170 { |
168 "cmd": [ | 171 "cmd": [ |
169 "python", | 172 "python", |
170 "-u", | 173 "-u", |
171 "[CWD]/skia/tools/build_command_buffer.py", | 174 "[SLAVE_BUILD]/skia/tools/build_command_buffer.py", |
172 "--chrome-dir", | 175 "--chrome-dir", |
173 "[CWD]", | 176 "[SLAVE_BUILD]", |
174 "--output-dir", | 177 "--output-dir", |
175 "[CWD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandB
uffer/Debug", | 178 "[SLAVE_BUILD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-
CommandBuffer/Debug", |
176 "--chrome-build-type", | 179 "--chrome-build-type", |
177 "Debug", | 180 "Debug", |
178 "--no-sync" | 181 "--no-sync" |
179 ], | 182 ], |
| 183 "cwd": "[SLAVE_BUILD]", |
180 "env": { | 184 "env": { |
181 "BUILDTYPE": "Debug", | 185 "BUILDTYPE": "Debug", |
182 "CC": "/usr/bin/clang", | 186 "CC": "/usr/bin/clang", |
183 "CXX": "/usr/bin/clang++", | 187 "CXX": "/usr/bin/clang++", |
184 "GYP_DEFINES": "skia_arch_type=x86_64 skia_clang_build=1 skia_command_buff
er=1 skia_warnings_as_errors=0", | 188 "GYP_DEFINES": "skia_arch_type=x86_64 skia_clang_build=1 skia_command_buff
er=1 skia_warnings_as_errors=0", |
185 "SKIA_OUT": "[CWD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-De
bug-CommandBuffer" | 189 "SKIA_OUT": "[SLAVE_BUILD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x
86_64-Debug-CommandBuffer" |
186 }, | 190 }, |
187 "name": "build command_buffer" | 191 "name": "build command_buffer" |
188 }, | 192 }, |
189 { | 193 { |
190 "cmd": [ | 194 "cmd": [ |
191 "make", | 195 "make", |
192 "nanobench" | 196 "nanobench" |
193 ], | 197 ], |
194 "cwd": "[CWD]/skia", | 198 "cwd": "[SLAVE_BUILD]/skia", |
195 "env": { | 199 "env": { |
196 "BUILDTYPE": "Debug", | 200 "BUILDTYPE": "Debug", |
197 "CC": "/usr/bin/clang", | 201 "CC": "/usr/bin/clang", |
198 "CHROME_PATH": "[HOME]/src", | 202 "CHROME_PATH": "[HOME]/src", |
199 "CXX": "/usr/bin/clang++", | 203 "CXX": "/usr/bin/clang++", |
200 "GYP_DEFINES": "skia_arch_type=x86_64 skia_clang_build=1 skia_command_buff
er=1 skia_warnings_as_errors=0", | 204 "GYP_DEFINES": "skia_arch_type=x86_64 skia_clang_build=1 skia_command_buff
er=1 skia_warnings_as_errors=0", |
201 "SKIA_OUT": "[CWD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-De
bug-CommandBuffer" | 205 "SKIA_OUT": "[SLAVE_BUILD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x
86_64-Debug-CommandBuffer" |
202 }, | 206 }, |
203 "name": "build nanobench" | 207 "name": "build nanobench" |
204 }, | 208 }, |
205 { | 209 { |
206 "cmd": [ | 210 "cmd": [ |
207 "python", | 211 "python", |
208 "-u", | 212 "-u", |
209 "\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", | 213 "\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", |
210 "[CWD]/tmp", | 214 "[SLAVE_BUILD]/tmp", |
211 "511" | 215 "511" |
212 ], | 216 ], |
| 217 "cwd": "[SLAVE_BUILD]", |
213 "name": "makedirs tmp_dir", | 218 "name": "makedirs tmp_dir", |
214 "~followup_annotations": [ | 219 "~followup_annotations": [ |
215 "@@@STEP_LOG_LINE@python.inline@@@@", | 220 "@@@STEP_LOG_LINE@python.inline@@@@", |
216 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 221 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
217 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 222 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
218 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 223 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
219 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 224 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
220 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 225 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
221 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 226 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
222 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 227 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
223 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 228 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
224 "@@@STEP_LOG_END@python.inline@@@" | 229 "@@@STEP_LOG_END@python.inline@@@" |
225 ] | 230 ] |
226 }, | 231 }, |
227 { | 232 { |
228 "cmd": [ | 233 "cmd": [ |
229 "python", | 234 "python", |
230 "-u", | 235 "-u", |
231 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 236 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
232 "[CWD]/tmp/SKP_VERSION", | 237 "[SLAVE_BUILD]/tmp/SKP_VERSION", |
233 "/path/to/tmp/" | 238 "/path/to/tmp/" |
234 ], | 239 ], |
| 240 "cwd": "[SLAVE_BUILD]", |
235 "name": "Get downloaded SKP_VERSION" | 241 "name": "Get downloaded SKP_VERSION" |
236 }, | 242 }, |
237 { | 243 { |
238 "cmd": [ | 244 "cmd": [ |
239 "python", | 245 "python", |
240 "-u", | 246 "-u", |
241 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 247 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
242 "[CWD]/skia/SKP_VERSION", | 248 "[SLAVE_BUILD]/skia/SKP_VERSION", |
243 "/path/to/tmp/" | 249 "/path/to/tmp/" |
244 ], | 250 ], |
| 251 "cwd": "[SLAVE_BUILD]", |
245 "name": "Get expected SKP_VERSION" | 252 "name": "Get expected SKP_VERSION" |
246 }, | 253 }, |
247 { | 254 { |
248 "cmd": [ | 255 "cmd": [ |
249 "python", | 256 "python", |
250 "-u", | 257 "-u", |
251 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 258 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
252 "[CWD]/tmp/SK_IMAGE_VERSION", | 259 "[SLAVE_BUILD]/tmp/SK_IMAGE_VERSION", |
253 "/path/to/tmp/" | 260 "/path/to/tmp/" |
254 ], | 261 ], |
| 262 "cwd": "[SLAVE_BUILD]", |
255 "name": "Get downloaded SK_IMAGE_VERSION" | 263 "name": "Get downloaded SK_IMAGE_VERSION" |
256 }, | 264 }, |
257 { | 265 { |
258 "cmd": [ | 266 "cmd": [ |
259 "python", | 267 "python", |
260 "-u", | 268 "-u", |
261 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 269 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
262 "[CWD]/skia/SK_IMAGE_VERSION", | 270 "[SLAVE_BUILD]/skia/SK_IMAGE_VERSION", |
263 "/path/to/tmp/" | 271 "/path/to/tmp/" |
264 ], | 272 ], |
| 273 "cwd": "[SLAVE_BUILD]", |
265 "name": "Get expected SK_IMAGE_VERSION" | 274 "name": "Get expected SK_IMAGE_VERSION" |
266 }, | 275 }, |
267 { | 276 { |
268 "cmd": [ | 277 "cmd": [ |
269 "python", | 278 "python", |
270 "-u", | 279 "-u", |
271 "\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", | 280 "\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", |
272 "[CWD]/dm" | 281 "[SLAVE_BUILD]/dm" |
273 ], | 282 ], |
| 283 "cwd": "[SLAVE_BUILD]", |
274 "name": "rmtree dm", | 284 "name": "rmtree dm", |
275 "~followup_annotations": [ | 285 "~followup_annotations": [ |
276 "@@@STEP_LOG_LINE@python.inline@@@@", | 286 "@@@STEP_LOG_LINE@python.inline@@@@", |
277 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", | 287 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", |
278 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", | 288 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", |
279 "@@@STEP_LOG_LINE@python.inline@@@@", | 289 "@@@STEP_LOG_LINE@python.inline@@@@", |
280 "@@@STEP_LOG_LINE@python.inline@@@@", | 290 "@@@STEP_LOG_LINE@python.inline@@@@", |
281 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", | 291 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", |
282 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", | 292 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", |
283 "@@@STEP_LOG_END@python.inline@@@" | 293 "@@@STEP_LOG_END@python.inline@@@" |
284 ] | 294 ] |
285 }, | 295 }, |
286 { | 296 { |
287 "cmd": [ | 297 "cmd": [ |
288 "python", | 298 "python", |
289 "-u", | 299 "-u", |
290 "\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", | 300 "\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", |
291 "[CWD]/dm", | 301 "[SLAVE_BUILD]/dm", |
292 "511" | 302 "511" |
293 ], | 303 ], |
| 304 "cwd": "[SLAVE_BUILD]", |
294 "name": "makedirs dm", | 305 "name": "makedirs dm", |
295 "~followup_annotations": [ | 306 "~followup_annotations": [ |
296 "@@@STEP_LOG_LINE@python.inline@@@@", | 307 "@@@STEP_LOG_LINE@python.inline@@@@", |
297 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 308 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
298 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 309 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
299 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 310 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
300 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 311 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
301 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 312 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
302 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 313 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
303 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 314 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
304 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 315 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
305 "@@@STEP_LOG_END@python.inline@@@" | 316 "@@@STEP_LOG_END@python.inline@@@" |
306 ] | 317 ] |
307 }, | 318 }, |
308 { | 319 { |
309 "cmd": [ | 320 "cmd": [ |
310 "python", | 321 "python", |
311 "-u", | 322 "-u", |
312 "\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\
nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nT
IMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in r
ange(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HA
SHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.
argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception
as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n
print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math
.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(wait
time)\n", | 323 "\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\
nimport urllib2\n\nHASHES_URL = 'https://gold.skia.org/_/hashes'\nRETRIES = 5\nT
IMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in r
ange(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HA
SHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.
argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception
as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n
print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math
.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(wait
time)\n", |
313 "[CWD]/tmp/uninteresting_hashes.txt" | 324 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt" |
314 ], | 325 ], |
315 "cwd": "[CWD]/skia", | 326 "cwd": "[SLAVE_BUILD]/skia", |
316 "env": { | 327 "env": { |
317 "BUILDTYPE": "Debug", | 328 "BUILDTYPE": "Debug", |
318 "CC": "/usr/bin/clang", | 329 "CC": "/usr/bin/clang", |
319 "CXX": "/usr/bin/clang++", | 330 "CXX": "/usr/bin/clang++", |
320 "GYP_DEFINES": "skia_arch_type=x86_64 skia_clang_build=1 skia_command_buff
er=1 skia_warnings_as_errors=0", | 331 "GYP_DEFINES": "skia_arch_type=x86_64 skia_clang_build=1 skia_command_buff
er=1 skia_warnings_as_errors=0", |
321 "SKIA_OUT": "[CWD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-De
bug-CommandBuffer" | 332 "SKIA_OUT": "[SLAVE_BUILD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x
86_64-Debug-CommandBuffer" |
322 }, | 333 }, |
323 "name": "get uninteresting hashes", | 334 "name": "get uninteresting hashes", |
324 "~followup_annotations": [ | 335 "~followup_annotations": [ |
325 "@@@STEP_LOG_LINE@python.inline@@@@", | 336 "@@@STEP_LOG_LINE@python.inline@@@@", |
326 "@@@STEP_LOG_LINE@python.inline@import contextlib@@@", | 337 "@@@STEP_LOG_LINE@python.inline@import contextlib@@@", |
327 "@@@STEP_LOG_LINE@python.inline@import math@@@", | 338 "@@@STEP_LOG_LINE@python.inline@import math@@@", |
328 "@@@STEP_LOG_LINE@python.inline@import socket@@@", | 339 "@@@STEP_LOG_LINE@python.inline@import socket@@@", |
329 "@@@STEP_LOG_LINE@python.inline@import sys@@@", | 340 "@@@STEP_LOG_LINE@python.inline@import sys@@@", |
330 "@@@STEP_LOG_LINE@python.inline@import time@@@", | 341 "@@@STEP_LOG_LINE@python.inline@import time@@@", |
331 "@@@STEP_LOG_LINE@python.inline@import urllib2@@@", | 342 "@@@STEP_LOG_LINE@python.inline@import urllib2@@@", |
(...skipping 19 matching lines...) Expand all Loading... |
351 "@@@STEP_LOG_LINE@python.inline@ raise@@@", | 362 "@@@STEP_LOG_LINE@python.inline@ raise@@@", |
352 "@@@STEP_LOG_LINE@python.inline@ waittime = WAIT_BASE * math.pow(2, ret
ry)@@@", | 363 "@@@STEP_LOG_LINE@python.inline@ waittime = WAIT_BASE * math.pow(2, ret
ry)@@@", |
353 "@@@STEP_LOG_LINE@python.inline@ print 'Retry in %d seconds.' % waittim
e@@@", | 364 "@@@STEP_LOG_LINE@python.inline@ print 'Retry in %d seconds.' % waittim
e@@@", |
354 "@@@STEP_LOG_LINE@python.inline@ time.sleep(waittime)@@@", | 365 "@@@STEP_LOG_LINE@python.inline@ time.sleep(waittime)@@@", |
355 "@@@STEP_LOG_END@python.inline@@@" | 366 "@@@STEP_LOG_END@python.inline@@@" |
356 ] | 367 ] |
357 }, | 368 }, |
358 { | 369 { |
359 "cmd": [ | 370 "cmd": [ |
360 "catchsegv", | 371 "catchsegv", |
361 "[CWD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandB
uffer/Debug/dm", | 372 "[SLAVE_BUILD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-
CommandBuffer/Debug/dm", |
362 "--undefok", | 373 "--undefok", |
363 "--resourcePath", | 374 "--resourcePath", |
364 "[CWD]/skia/resources", | 375 "[SLAVE_BUILD]/skia/resources", |
365 "--skps", | 376 "--skps", |
366 "[CWD]/playback/skps", | 377 "[SLAVE_BUILD]/playback/skps", |
367 "--images", | 378 "--images", |
368 "[CWD]/images/dm", | 379 "[SLAVE_BUILD]/images/dm", |
369 "--nameByHash", | 380 "--nameByHash", |
370 "--properties", | 381 "--properties", |
371 "gitHash", | 382 "gitHash", |
372 "164710", | 383 "164710", |
373 "master", | 384 "master", |
374 "client.skia", | 385 "client.skia", |
375 "builder", | 386 "builder", |
376 "Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandBuffer", | 387 "Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandBuffer", |
377 "build_number", | 388 "build_number", |
378 "5", | 389 "5", |
379 "--key", | 390 "--key", |
380 "arch", | 391 "arch", |
381 "x86_64", | 392 "x86_64", |
382 "compiler", | 393 "compiler", |
383 "Clang", | 394 "Clang", |
384 "configuration", | 395 "configuration", |
385 "Debug", | 396 "Debug", |
386 "cpu_or_gpu", | 397 "cpu_or_gpu", |
387 "GPU", | 398 "GPU", |
388 "cpu_or_gpu_value", | 399 "cpu_or_gpu_value", |
389 "HD4000", | 400 "HD4000", |
390 "extra_config", | 401 "extra_config", |
391 "CommandBuffer", | 402 "CommandBuffer", |
392 "model", | 403 "model", |
393 "MacMini6.2", | 404 "MacMini6.2", |
394 "os", | 405 "os", |
395 "Mac", | 406 "Mac", |
396 "--uninterestingHashesFile", | 407 "--uninterestingHashesFile", |
397 "[CWD]/tmp/uninteresting_hashes.txt", | 408 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt", |
398 "--writePath", | 409 "--writePath", |
399 "[CWD]/dm", | 410 "[SLAVE_BUILD]/dm", |
400 "--nocpu", | 411 "--nocpu", |
401 "--dummy-flags" | 412 "--dummy-flags" |
402 ], | 413 ], |
| 414 "cwd": "[SLAVE_BUILD]", |
403 "env": { | 415 "env": { |
404 "BUILDTYPE": "Debug", | 416 "BUILDTYPE": "Debug", |
405 "CC": "/usr/bin/clang", | 417 "CC": "/usr/bin/clang", |
406 "CXX": "/usr/bin/clang++", | 418 "CXX": "/usr/bin/clang++", |
407 "GYP_DEFINES": "skia_arch_type=x86_64 skia_clang_build=1 skia_command_buff
er=1 skia_warnings_as_errors=0", | 419 "GYP_DEFINES": "skia_arch_type=x86_64 skia_clang_build=1 skia_command_buff
er=1 skia_warnings_as_errors=0", |
408 "SKIA_OUT": "[CWD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-De
bug-CommandBuffer" | 420 "SKIA_OUT": "[SLAVE_BUILD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x
86_64-Debug-CommandBuffer" |
409 }, | 421 }, |
410 "name": "dm" | 422 "name": "dm" |
411 }, | 423 }, |
412 { | 424 { |
413 "cmd": [ | 425 "cmd": [ |
414 "python", | 426 "python", |
415 "-u", | 427 "-u", |
416 "RECIPE_MODULE[build::skia]/resources/upload_dm_results.py", | 428 "RECIPE_MODULE[build::skia]/resources/upload_dm_results.py", |
417 "[CWD]/dm", | 429 "[SLAVE_BUILD]/dm", |
418 "164710", | 430 "164710", |
419 "Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandBuffer", | 431 "Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandBuffer", |
420 "5", | 432 "5", |
421 "", | 433 "", |
422 "[CWD]/skia/common/py/utils" | 434 "[SLAVE_BUILD]/skia/common/py/utils" |
423 ], | 435 ], |
424 "cwd": "[CWD]/skia", | 436 "cwd": "[SLAVE_BUILD]/skia", |
425 "env": { | 437 "env": { |
426 "AWS_CREDENTIAL_FILE": "[HOME]/chromium-skia-gm.boto", | 438 "AWS_CREDENTIAL_FILE": "[HOME]/chromium-skia-gm.boto", |
427 "BOTO_CONFIG": "[HOME]/chromium-skia-gm.boto", | 439 "BOTO_CONFIG": "[HOME]/chromium-skia-gm.boto", |
428 "BUILDTYPE": "Debug", | 440 "BUILDTYPE": "Debug", |
429 "CC": "/usr/bin/clang", | 441 "CC": "/usr/bin/clang", |
430 "CXX": "/usr/bin/clang++", | 442 "CXX": "/usr/bin/clang++", |
431 "GYP_DEFINES": "skia_arch_type=x86_64 skia_clang_build=1 skia_command_buff
er=1 skia_warnings_as_errors=0", | 443 "GYP_DEFINES": "skia_arch_type=x86_64 skia_clang_build=1 skia_command_buff
er=1 skia_warnings_as_errors=0", |
432 "SKIA_OUT": "[CWD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-De
bug-CommandBuffer" | 444 "SKIA_OUT": "[SLAVE_BUILD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x
86_64-Debug-CommandBuffer" |
433 }, | 445 }, |
434 "name": "Upload DM Results" | 446 "name": "Upload DM Results" |
435 }, | 447 }, |
436 { | 448 { |
437 "cmd": [ | 449 "cmd": [ |
438 "catchsegv", | 450 "catchsegv", |
439 "[CWD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandB
uffer/Debug/nanobench", | 451 "[SLAVE_BUILD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-
CommandBuffer/Debug/nanobench", |
440 "--undefok", | 452 "--undefok", |
441 "-i", | 453 "-i", |
442 "[CWD]/skia/resources", | 454 "[SLAVE_BUILD]/skia/resources", |
443 "--skps", | 455 "--skps", |
444 "[CWD]/playback/skps", | 456 "[SLAVE_BUILD]/playback/skps", |
445 "--images", | 457 "--images", |
446 "[CWD]/images/dm", | 458 "[SLAVE_BUILD]/images/dm", |
447 "--nocpu", | 459 "--nocpu", |
448 "--dummy-flags" | 460 "--dummy-flags" |
449 ], | 461 ], |
| 462 "cwd": "[SLAVE_BUILD]", |
450 "env": { | 463 "env": { |
451 "BUILDTYPE": "Debug", | 464 "BUILDTYPE": "Debug", |
452 "CC": "/usr/bin/clang", | 465 "CC": "/usr/bin/clang", |
453 "CXX": "/usr/bin/clang++", | 466 "CXX": "/usr/bin/clang++", |
454 "GYP_DEFINES": "skia_arch_type=x86_64 skia_clang_build=1 skia_command_buff
er=1 skia_warnings_as_errors=0", | 467 "GYP_DEFINES": "skia_arch_type=x86_64 skia_clang_build=1 skia_command_buff
er=1 skia_warnings_as_errors=0", |
455 "SKIA_OUT": "[CWD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-De
bug-CommandBuffer" | 468 "SKIA_OUT": "[SLAVE_BUILD]/skia/out/Test-Mac-Clang-MacMini6.2-GPU-HD4000-x
86_64-Debug-CommandBuffer" |
456 }, | 469 }, |
457 "name": "nanobench" | 470 "name": "nanobench" |
458 }, | 471 }, |
459 { | 472 { |
460 "name": "$result", | 473 "name": "$result", |
461 "recipe_result": null, | 474 "recipe_result": null, |
462 "status_code": 0 | 475 "status_code": 0 |
463 } | 476 } |
464 ] | 477 ] |
OLD | NEW |