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": "[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", | 15 "git", |
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", | 23 "git", |
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", | 33 "git", |
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 "git", | 43 "git", |
44 "remote", | 44 "remote", |
45 "set-url", | 45 "set-url", |
46 "origin", | 46 "origin", |
47 "https://chromium.googlesource.com/chromium/src.git" | 47 "https://chromium.googlesource.com/chromium/src.git" |
48 ], | 48 ], |
49 "cwd": "[SLAVE_BUILD]/src", | 49 "cwd": "[CWD]/src", |
50 "name": "git remote set-url (2)" | 50 "name": "git remote set-url (2)" |
51 }, | 51 }, |
52 { | 52 { |
53 "cmd": [ | 53 "cmd": [ |
54 "git", | 54 "git", |
55 "fetch" | 55 "fetch" |
56 ], | 56 ], |
57 "cwd": "[SLAVE_BUILD]/src", | 57 "cwd": "[CWD]/src", |
58 "name": "git fetch (2)" | 58 "name": "git fetch (2)" |
59 }, | 59 }, |
60 { | 60 { |
61 "cmd": [ | 61 "cmd": [ |
62 "git", | 62 "git", |
63 "reset", | 63 "reset", |
64 "--hard", | 64 "--hard", |
65 "origin/master" | 65 "origin/master" |
66 ], | 66 ], |
67 "cwd": "[SLAVE_BUILD]/src", | 67 "cwd": "[CWD]/src", |
68 "name": "git reset (2)" | 68 "name": "git reset (2)" |
69 }, | 69 }, |
70 { | 70 { |
71 "cmd": [ | 71 "cmd": [ |
72 "git", | 72 "git", |
73 "clean", | 73 "clean", |
74 "-d", | 74 "-d", |
75 "-f" | 75 "-f" |
76 ], | 76 ], |
77 "cwd": "[SLAVE_BUILD]/src", | 77 "cwd": "[CWD]/src", |
78 "name": "git clean (2)" | 78 "name": "git clean (2)" |
79 }, | 79 }, |
80 { | 80 { |
81 "cmd": [ | 81 "cmd": [ |
82 "python", | 82 "python", |
83 "-u", | 83 "-u", |
84 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 84 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
85 "config", | 85 "config", |
86 "--spec", | 86 "--spec", |
87 "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'}]" | 87 "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'}]" |
88 ], | 88 ], |
89 "cwd": "[SLAVE_BUILD]", | |
90 "env": { | 89 "env": { |
91 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 90 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
92 }, | 91 }, |
93 "name": "gclient setup" | 92 "name": "gclient setup" |
94 }, | 93 }, |
95 { | 94 { |
96 "cmd": [ | 95 "cmd": [ |
97 "python", | 96 "python", |
98 "-u", | 97 "-u", |
99 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 98 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
100 "sync", | 99 "sync", |
101 "--nohooks", | 100 "--nohooks", |
102 "--force", | 101 "--force", |
103 "--verbose", | 102 "--verbose", |
104 "--delete_unversioned_trees", | 103 "--delete_unversioned_trees", |
105 "--revision", | 104 "--revision", |
106 "skia@abc123", | 105 "skia@abc123", |
107 "--revision", | 106 "--revision", |
108 "src@origin/master", | 107 "src@origin/master", |
109 "--output-json", | 108 "--output-json", |
110 "/path/to/tmp/json" | 109 "/path/to/tmp/json" |
111 ], | 110 ], |
112 "cwd": "[SLAVE_BUILD]", | |
113 "env": { | 111 "env": { |
114 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 112 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
115 }, | 113 }, |
116 "name": "gclient sync", | 114 "name": "gclient sync", |
117 "~followup_annotations": [ | 115 "~followup_annotations": [ |
118 "@@@STEP_LOG_LINE@json.output@{@@@", | 116 "@@@STEP_LOG_LINE@json.output@{@@@", |
119 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", | 117 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", |
120 "@@@STEP_LOG_LINE@json.output@ \"skia/\": {@@@", | 118 "@@@STEP_LOG_LINE@json.output@ \"skia/\": {@@@", |
121 "@@@STEP_LOG_LINE@json.output@ \"revision\": 164710@@@", | 119 "@@@STEP_LOG_LINE@json.output@ \"revision\": 164710@@@", |
122 "@@@STEP_LOG_LINE@json.output@ }, @@@", | 120 "@@@STEP_LOG_LINE@json.output@ }, @@@", |
123 "@@@STEP_LOG_LINE@json.output@ \"src/\": {@@@", | 121 "@@@STEP_LOG_LINE@json.output@ \"src/\": {@@@", |
124 "@@@STEP_LOG_LINE@json.output@ \"revision\": 170242@@@", | 122 "@@@STEP_LOG_LINE@json.output@ \"revision\": 170242@@@", |
125 "@@@STEP_LOG_LINE@json.output@ }@@@", | 123 "@@@STEP_LOG_LINE@json.output@ }@@@", |
126 "@@@STEP_LOG_LINE@json.output@ }@@@", | 124 "@@@STEP_LOG_LINE@json.output@ }@@@", |
127 "@@@STEP_LOG_LINE@json.output@}@@@", | 125 "@@@STEP_LOG_LINE@json.output@}@@@", |
128 "@@@STEP_LOG_END@json.output@@@", | 126 "@@@STEP_LOG_END@json.output@@@", |
129 "@@@SET_BUILD_PROPERTY@got_revision@164710@@@" | 127 "@@@SET_BUILD_PROPERTY@got_revision@164710@@@" |
130 ] | 128 ] |
131 }, | 129 }, |
132 { | 130 { |
133 "cmd": [ | 131 "cmd": [ |
134 "python", | 132 "python", |
135 "-u", | 133 "-u", |
136 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py", | 134 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py", |
137 "--path", | 135 "--path", |
138 "[SLAVE_BUILD]/swarming.client", | 136 "[CWD]/swarming.client", |
139 "--url", | 137 "--url", |
140 "https://chromium.googlesource.com/external/swarming.client.git" | 138 "https://chromium.googlesource.com/external/swarming.client.git" |
141 ], | 139 ], |
142 "cwd": "[SLAVE_BUILD]", | |
143 "name": "git setup (swarming_client)" | 140 "name": "git setup (swarming_client)" |
144 }, | 141 }, |
145 { | 142 { |
146 "cmd": [ | 143 "cmd": [ |
147 "git", | 144 "git", |
148 "retry", | 145 "retry", |
149 "fetch", | 146 "fetch", |
150 "origin", | 147 "origin", |
151 "master" | 148 "master" |
152 ], | 149 ], |
153 "cwd": "[SLAVE_BUILD]/swarming.client", | 150 "cwd": "[CWD]/swarming.client", |
154 "name": "git fetch (swarming_client)" | 151 "name": "git fetch (swarming_client)" |
155 }, | 152 }, |
156 { | 153 { |
157 "cmd": [ | 154 "cmd": [ |
158 "git", | 155 "git", |
159 "checkout", | 156 "checkout", |
160 "-f", | 157 "-f", |
161 "FETCH_HEAD" | 158 "FETCH_HEAD" |
162 ], | 159 ], |
163 "cwd": "[SLAVE_BUILD]/swarming.client", | 160 "cwd": "[CWD]/swarming.client", |
164 "name": "git checkout (swarming_client)" | 161 "name": "git checkout (swarming_client)" |
165 }, | 162 }, |
166 { | 163 { |
167 "cmd": [ | 164 "cmd": [ |
168 "git", | 165 "git", |
169 "rev-parse", | 166 "rev-parse", |
170 "HEAD" | 167 "HEAD" |
171 ], | 168 ], |
172 "cwd": "[SLAVE_BUILD]/swarming.client", | 169 "cwd": "[CWD]/swarming.client", |
173 "name": "read revision", | 170 "name": "read revision", |
174 "stdout": "/path/to/tmp/", | 171 "stdout": "/path/to/tmp/", |
175 "~followup_annotations": [ | 172 "~followup_annotations": [ |
176 "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@" | 173 "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@" |
177 ] | 174 ] |
178 }, | 175 }, |
179 { | 176 { |
180 "cmd": [ | 177 "cmd": [ |
181 "git", | 178 "git", |
182 "clean", | 179 "clean", |
183 "-f", | 180 "-f", |
184 "-d", | 181 "-d", |
185 "-x" | 182 "-x" |
186 ], | 183 ], |
187 "cwd": "[SLAVE_BUILD]/swarming.client", | 184 "cwd": "[CWD]/swarming.client", |
188 "name": "git clean (swarming_client)" | 185 "name": "git clean (swarming_client)" |
189 }, | 186 }, |
190 { | 187 { |
191 "cmd": [ | 188 "cmd": [ |
192 "git", | 189 "git", |
193 "submodule", | 190 "submodule", |
194 "sync" | 191 "sync" |
195 ], | 192 ], |
196 "cwd": "[SLAVE_BUILD]/swarming.client", | 193 "cwd": "[CWD]/swarming.client", |
197 "name": "submodule sync (swarming_client)" | 194 "name": "submodule sync (swarming_client)" |
198 }, | 195 }, |
199 { | 196 { |
200 "cmd": [ | 197 "cmd": [ |
201 "git", | 198 "git", |
202 "submodule", | 199 "submodule", |
203 "update", | 200 "update", |
204 "--init", | 201 "--init", |
205 "--recursive" | 202 "--recursive" |
206 ], | 203 ], |
207 "cwd": "[SLAVE_BUILD]/swarming.client", | 204 "cwd": "[CWD]/swarming.client", |
208 "name": "submodule update (swarming_client)" | 205 "name": "submodule update (swarming_client)" |
209 }, | 206 }, |
210 { | 207 { |
211 "cmd": [ | 208 "cmd": [ |
212 "python", | 209 "python", |
213 "-u", | 210 "-u", |
214 "[SLAVE_BUILD]/swarming.client/swarming.py", | 211 "[CWD]/swarming.client/swarming.py", |
215 "--version" | 212 "--version" |
216 ], | 213 ], |
217 "cwd": "[SLAVE_BUILD]", | |
218 "name": "swarming.py --version", | 214 "name": "swarming.py --version", |
219 "stdout": "/path/to/tmp/", | 215 "stdout": "/path/to/tmp/", |
220 "~followup_annotations": [ | 216 "~followup_annotations": [ |
221 "@@@STEP_TEXT@0.4.10@@@" | 217 "@@@STEP_TEXT@0.4.10@@@" |
222 ] | 218 ] |
223 }, | 219 }, |
224 { | 220 { |
225 "cmd": [ | 221 "cmd": [ |
226 "download_from_google_storage", | 222 "download_from_google_storage", |
227 "--no_resume", | 223 "--no_resume", |
228 "--platform=linux*", | 224 "--platform=linux*", |
229 "--no_auth", | 225 "--no_auth", |
230 "--bucket", | 226 "--bucket", |
231 "chromium-luci", | 227 "chromium-luci", |
232 "-d", | 228 "-d", |
233 "[SLAVE_BUILD]/src/tools/luci-go/linux64" | 229 "[CWD]/src/tools/luci-go/linux64" |
234 ], | 230 ], |
235 "cwd": "[SLAVE_BUILD]", | |
236 "name": "download luci-go linux" | 231 "name": "download luci-go linux" |
237 }, | 232 }, |
238 { | 233 { |
239 "cmd": [ | 234 "cmd": [ |
240 "download_from_google_storage", | 235 "download_from_google_storage", |
241 "--no_resume", | 236 "--no_resume", |
242 "--platform=darwin", | 237 "--platform=darwin", |
243 "--no_auth", | 238 "--no_auth", |
244 "--bucket", | 239 "--bucket", |
245 "chromium-luci", | 240 "chromium-luci", |
246 "-d", | 241 "-d", |
247 "[SLAVE_BUILD]/src/tools/luci-go/mac64" | 242 "[CWD]/src/tools/luci-go/mac64" |
248 ], | 243 ], |
249 "cwd": "[SLAVE_BUILD]", | |
250 "name": "download luci-go mac" | 244 "name": "download luci-go mac" |
251 }, | 245 }, |
252 { | 246 { |
253 "cmd": [ | 247 "cmd": [ |
254 "download_from_google_storage", | 248 "download_from_google_storage", |
255 "--no_resume", | 249 "--no_resume", |
256 "--platform=win32", | 250 "--platform=win32", |
257 "--no_auth", | 251 "--no_auth", |
258 "--bucket", | 252 "--bucket", |
259 "chromium-luci", | 253 "chromium-luci", |
260 "-d", | 254 "-d", |
261 "[SLAVE_BUILD]/src/tools/luci-go/win64" | 255 "[CWD]/src/tools/luci-go/win64" |
262 ], | 256 ], |
263 "cwd": "[SLAVE_BUILD]", | |
264 "name": "download luci-go win" | 257 "name": "download luci-go win" |
265 }, | 258 }, |
266 { | 259 { |
267 "cmd": [ | 260 "cmd": [ |
268 "python", | 261 "python", |
269 "-u", | 262 "-u", |
270 "\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", | 263 "\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", |
271 "[SLAVE_BUILD]/luci-go" | 264 "[CWD]/luci-go" |
272 ], | 265 ], |
273 "cwd": "[SLAVE_BUILD]", | |
274 "name": "rmtree Go binary dir", | 266 "name": "rmtree Go binary dir", |
275 "~followup_annotations": [ | 267 "~followup_annotations": [ |
276 "@@@STEP_LOG_LINE@python.inline@@@@", | 268 "@@@STEP_LOG_LINE@python.inline@@@@", |
277 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", | 269 "@@@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.@@@", | 270 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", |
279 "@@@STEP_LOG_LINE@python.inline@@@@", | 271 "@@@STEP_LOG_LINE@python.inline@@@@", |
280 "@@@STEP_LOG_LINE@python.inline@@@@", | 272 "@@@STEP_LOG_LINE@python.inline@@@@", |
281 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", | 273 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", |
282 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", | 274 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", |
283 "@@@STEP_LOG_END@python.inline@@@" | 275 "@@@STEP_LOG_END@python.inline@@@" |
284 ] | 276 ] |
285 }, | 277 }, |
286 { | 278 { |
287 "cmd": [ | 279 "cmd": [ |
288 "python", | 280 "python", |
289 "-u", | 281 "-u", |
290 "\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], sy
mlinks=bool(sys.argv[3]))\n", | 282 "\nimport shutil\nimport sys\nshutil.copytree(sys.argv[1], sys.argv[2], sy
mlinks=bool(sys.argv[3]))\n", |
291 "[SLAVE_BUILD]/src/tools/luci-go", | 283 "[CWD]/src/tools/luci-go", |
292 "[SLAVE_BUILD]/luci-go", | 284 "[CWD]/luci-go", |
293 "0" | 285 "0" |
294 ], | 286 ], |
295 "cwd": "[SLAVE_BUILD]", | |
296 "name": "Copy Go binary" | 287 "name": "Copy Go binary" |
297 }, | 288 }, |
298 { | 289 { |
299 "cmd": [ | 290 "cmd": [ |
300 "make", | 291 "make", |
301 "nanobench", | 292 "nanobench", |
302 "BUILDTYPE=Release" | 293 "BUILDTYPE=Release" |
303 ], | 294 ], |
304 "cwd": "[SLAVE_BUILD]/skia", | 295 "cwd": "[CWD]/skia", |
305 "name": "build nanobench", | 296 "name": "build nanobench", |
306 "~followup_annotations": [ | 297 "~followup_annotations": [ |
307 "@@@SET_BUILD_PROPERTY@Location of SKPs@\"https://pantheon.corp.google.com
/storage/browser/cluster-telemetry/skps/10k/57259e0-05dcb4c/\"@@@" | 298 "@@@SET_BUILD_PROPERTY@Location of SKPs@\"https://pantheon.corp.google.com
/storage/browser/cluster-telemetry/skps/10k/57259e0-05dcb4c/\"@@@" |
308 ] | 299 ] |
309 }, | 300 }, |
310 { | 301 { |
311 "cmd": [ | 302 "cmd": [ |
312 "python", | 303 "python", |
313 "-u", | 304 "-u", |
314 "\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", | 305 "\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", |
315 "[SLAVE_BUILD]/swarming_temp_dir" | 306 "[CWD]/swarming_temp_dir" |
316 ], | 307 ], |
317 "cwd": "[SLAVE_BUILD]", | |
318 "name": "rmtree swarming temp dir", | 308 "name": "rmtree swarming temp dir", |
319 "~followup_annotations": [ | 309 "~followup_annotations": [ |
320 "@@@STEP_LOG_LINE@python.inline@@@@", | 310 "@@@STEP_LOG_LINE@python.inline@@@@", |
321 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", | 311 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", |
322 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", | 312 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", |
323 "@@@STEP_LOG_LINE@python.inline@@@@", | 313 "@@@STEP_LOG_LINE@python.inline@@@@", |
324 "@@@STEP_LOG_LINE@python.inline@@@@", | 314 "@@@STEP_LOG_LINE@python.inline@@@@", |
325 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", | 315 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", |
326 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", | 316 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", |
327 "@@@STEP_LOG_END@python.inline@@@" | 317 "@@@STEP_LOG_END@python.inline@@@" |
328 ] | 318 ] |
329 }, | 319 }, |
330 { | 320 { |
331 "cmd": [ | 321 "cmd": [ |
332 "python", | 322 "python", |
333 "-u", | 323 "-u", |
334 "\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", | 324 "\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", |
335 "[SLAVE_BUILD]/skps/slave1", | 325 "[CWD]/skps/slave1", |
336 "511" | 326 "511" |
337 ], | 327 ], |
338 "cwd": "[SLAVE_BUILD]", | |
339 "name": "makedirs SKPs dir", | 328 "name": "makedirs SKPs dir", |
340 "~followup_annotations": [ | 329 "~followup_annotations": [ |
341 "@@@STEP_LOG_LINE@python.inline@@@@", | 330 "@@@STEP_LOG_LINE@python.inline@@@@", |
342 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 331 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
343 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 332 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
344 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 333 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
345 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 334 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
346 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 335 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
347 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 336 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
348 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 337 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
349 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 338 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
350 "@@@STEP_LOG_END@python.inline@@@" | 339 "@@@STEP_LOG_END@python.inline@@@" |
351 ] | 340 ] |
352 }, | 341 }, |
353 { | 342 { |
354 "cmd": [ | 343 "cmd": [ |
355 "python", | 344 "python", |
356 "-u", | 345 "-u", |
357 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 346 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
358 "--", | 347 "--", |
359 "[DEPOT_TOOLS]/gsutil.py", | 348 "[ROOT]/b/depot_tools/gsutil.py", |
360 "----", | 349 "----", |
361 "-m", | 350 "-m", |
362 "rsync", | 351 "rsync", |
363 "-d", | 352 "-d", |
364 "-r", | 353 "-r", |
365 "gs://cluster-telemetry/skps/10k/57259e0-05dcb4c/slave1", | 354 "gs://cluster-telemetry/skps/10k/57259e0-05dcb4c/slave1", |
366 "[SLAVE_BUILD]/skps/slave1" | 355 "[CWD]/skps/slave1" |
367 ], | 356 ], |
368 "cwd": "[SLAVE_BUILD]", | |
369 "name": "gsutil rsync" | 357 "name": "gsutil rsync" |
370 }, | 358 }, |
371 { | 359 { |
372 "cmd": [ | 360 "cmd": [ |
373 "python", | 361 "python", |
374 "-u", | 362 "-u", |
375 "\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", | 363 "\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", |
376 "[SLAVE_BUILD]/swarming_temp_dir", | 364 "[CWD]/swarming_temp_dir", |
377 "511" | 365 "511" |
378 ], | 366 ], |
379 "cwd": "[SLAVE_BUILD]", | |
380 "name": "makedirs swarming tmp dir", | 367 "name": "makedirs swarming tmp dir", |
381 "~followup_annotations": [ | 368 "~followup_annotations": [ |
382 "@@@STEP_LOG_LINE@python.inline@@@@", | 369 "@@@STEP_LOG_LINE@python.inline@@@@", |
383 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 370 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
384 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 371 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
385 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 372 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
386 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 373 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
387 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 374 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
388 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 375 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
389 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 376 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
390 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 377 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
391 "@@@STEP_LOG_END@python.inline@@@" | 378 "@@@STEP_LOG_END@python.inline@@@" |
392 ] | 379 ] |
393 }, | 380 }, |
394 { | 381 { |
395 "cmd": [ | 382 "cmd": [ |
396 "python", | 383 "python", |
397 "-u", | 384 "-u", |
398 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 385 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
399 "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/src/
chrome/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/sw
arming_temp_dir/skia-task-ct-nanobench-1.isolated\", \n \"--config-variab
le\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n
\"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\",
\n \"GIT_HASH\", \n 164710, \n \"--extra-variable\", \n
\"SLAVE_NUM\", \n \"1\", \n \"--extra-variable\", \n \
"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[SLAVE_BUILD]/src
/chrome\", \n \"version\": 1\n}", | 386 "{\n \"args\": [\n \"--isolate\", \n \"[CWD]/src/chrome/c
t_skps.isolate\", \n \"--isolated\", \n \"[CWD]/swarming_temp_dir/
skia-task-ct-nanobench-1.isolated\", \n \"--config-variable\", \n
\"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGU
RATION\", \n \"Release\", \n \"--extra-variable\", \n \"GIT
_HASH\", \n 164710, \n \"--extra-variable\", \n \"SLAVE_NUM
\", \n \"1\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n
\"nanobench\"\n ], \n \"dir\": \"[CWD]/src/chrome\", \n \"versi
on\": 1\n}", |
400 "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-1.isolated.gen.json" | 387 "[CWD]/swarming_temp_dir/ct-nanobench-1.isolated.gen.json" |
401 ], | 388 ], |
402 "cwd": "[SLAVE_BUILD]", | |
403 "name": "Write ct-nanobench-1.isolated.gen.json" | 389 "name": "Write ct-nanobench-1.isolated.gen.json" |
404 }, | 390 }, |
405 { | 391 { |
406 "cmd": [ | 392 "cmd": [ |
407 "python", | 393 "python", |
408 "-u", | 394 "-u", |
409 "\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", | 395 "\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", |
410 "[SLAVE_BUILD]/skps/slave2", | 396 "[CWD]/skps/slave2", |
411 "511" | 397 "511" |
412 ], | 398 ], |
413 "cwd": "[SLAVE_BUILD]", | |
414 "name": "makedirs SKPs dir (2)", | 399 "name": "makedirs SKPs dir (2)", |
415 "~followup_annotations": [ | 400 "~followup_annotations": [ |
416 "@@@STEP_LOG_LINE@python.inline@@@@", | 401 "@@@STEP_LOG_LINE@python.inline@@@@", |
417 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 402 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
418 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 403 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
419 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 404 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
420 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 405 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
421 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 406 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
422 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 407 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
423 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 408 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
424 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 409 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
425 "@@@STEP_LOG_END@python.inline@@@" | 410 "@@@STEP_LOG_END@python.inline@@@" |
426 ] | 411 ] |
427 }, | 412 }, |
428 { | 413 { |
429 "cmd": [ | 414 "cmd": [ |
430 "python", | 415 "python", |
431 "-u", | 416 "-u", |
432 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 417 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
433 "--", | 418 "--", |
434 "[DEPOT_TOOLS]/gsutil.py", | 419 "[ROOT]/b/depot_tools/gsutil.py", |
435 "----", | 420 "----", |
436 "-m", | 421 "-m", |
437 "rsync", | 422 "rsync", |
438 "-d", | 423 "-d", |
439 "-r", | 424 "-r", |
440 "gs://cluster-telemetry/skps/10k/57259e0-05dcb4c/slave2", | 425 "gs://cluster-telemetry/skps/10k/57259e0-05dcb4c/slave2", |
441 "[SLAVE_BUILD]/skps/slave2" | 426 "[CWD]/skps/slave2" |
442 ], | 427 ], |
443 "cwd": "[SLAVE_BUILD]", | |
444 "name": "gsutil rsync (2)" | 428 "name": "gsutil rsync (2)" |
445 }, | 429 }, |
446 { | 430 { |
447 "cmd": [ | 431 "cmd": [ |
448 "python", | 432 "python", |
449 "-u", | 433 "-u", |
450 "\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", | 434 "\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", |
451 "[SLAVE_BUILD]/swarming_temp_dir", | 435 "[CWD]/swarming_temp_dir", |
452 "511" | 436 "511" |
453 ], | 437 ], |
454 "cwd": "[SLAVE_BUILD]", | |
455 "name": "makedirs swarming tmp dir (2)", | 438 "name": "makedirs swarming tmp dir (2)", |
456 "~followup_annotations": [ | 439 "~followup_annotations": [ |
457 "@@@STEP_LOG_LINE@python.inline@@@@", | 440 "@@@STEP_LOG_LINE@python.inline@@@@", |
458 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 441 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
459 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 442 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
460 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 443 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
461 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 444 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
462 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 445 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
463 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 446 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
464 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 447 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
465 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 448 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
466 "@@@STEP_LOG_END@python.inline@@@" | 449 "@@@STEP_LOG_END@python.inline@@@" |
467 ] | 450 ] |
468 }, | 451 }, |
469 { | 452 { |
470 "cmd": [ | 453 "cmd": [ |
471 "python", | 454 "python", |
472 "-u", | 455 "-u", |
473 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 456 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
474 "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/src/
chrome/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/sw
arming_temp_dir/skia-task-ct-nanobench-2.isolated\", \n \"--config-variab
le\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n
\"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\",
\n \"GIT_HASH\", \n 164710, \n \"--extra-variable\", \n
\"SLAVE_NUM\", \n \"2\", \n \"--extra-variable\", \n \
"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[SLAVE_BUILD]/src
/chrome\", \n \"version\": 1\n}", | 457 "{\n \"args\": [\n \"--isolate\", \n \"[CWD]/src/chrome/c
t_skps.isolate\", \n \"--isolated\", \n \"[CWD]/swarming_temp_dir/
skia-task-ct-nanobench-2.isolated\", \n \"--config-variable\", \n
\"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGU
RATION\", \n \"Release\", \n \"--extra-variable\", \n \"GIT
_HASH\", \n 164710, \n \"--extra-variable\", \n \"SLAVE_NUM
\", \n \"2\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n
\"nanobench\"\n ], \n \"dir\": \"[CWD]/src/chrome\", \n \"versi
on\": 1\n}", |
475 "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-2.isolated.gen.json" | 458 "[CWD]/swarming_temp_dir/ct-nanobench-2.isolated.gen.json" |
476 ], | 459 ], |
477 "cwd": "[SLAVE_BUILD]", | |
478 "name": "Write ct-nanobench-2.isolated.gen.json" | 460 "name": "Write ct-nanobench-2.isolated.gen.json" |
479 }, | 461 }, |
480 { | 462 { |
481 "cmd": [ | 463 "cmd": [ |
482 "python", | 464 "python", |
483 "-u", | 465 "-u", |
484 "\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", | 466 "\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", |
485 "[SLAVE_BUILD]/skps/slave3", | 467 "[CWD]/skps/slave3", |
486 "511" | 468 "511" |
487 ], | 469 ], |
488 "cwd": "[SLAVE_BUILD]", | |
489 "name": "makedirs SKPs dir (3)", | 470 "name": "makedirs SKPs dir (3)", |
490 "~followup_annotations": [ | 471 "~followup_annotations": [ |
491 "@@@STEP_LOG_LINE@python.inline@@@@", | 472 "@@@STEP_LOG_LINE@python.inline@@@@", |
492 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 473 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
493 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 474 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
494 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 475 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
495 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 476 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
496 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 477 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
497 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 478 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
498 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 479 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
499 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 480 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
500 "@@@STEP_LOG_END@python.inline@@@" | 481 "@@@STEP_LOG_END@python.inline@@@" |
501 ] | 482 ] |
502 }, | 483 }, |
503 { | 484 { |
504 "cmd": [ | 485 "cmd": [ |
505 "python", | 486 "python", |
506 "-u", | 487 "-u", |
507 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 488 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
508 "--", | 489 "--", |
509 "[DEPOT_TOOLS]/gsutil.py", | 490 "[ROOT]/b/depot_tools/gsutil.py", |
510 "----", | 491 "----", |
511 "-m", | 492 "-m", |
512 "rsync", | 493 "rsync", |
513 "-d", | 494 "-d", |
514 "-r", | 495 "-r", |
515 "gs://cluster-telemetry/skps/10k/57259e0-05dcb4c/slave3", | 496 "gs://cluster-telemetry/skps/10k/57259e0-05dcb4c/slave3", |
516 "[SLAVE_BUILD]/skps/slave3" | 497 "[CWD]/skps/slave3" |
517 ], | 498 ], |
518 "cwd": "[SLAVE_BUILD]", | |
519 "name": "gsutil rsync (3)" | 499 "name": "gsutil rsync (3)" |
520 }, | 500 }, |
521 { | 501 { |
522 "cmd": [ | 502 "cmd": [ |
523 "python", | 503 "python", |
524 "-u", | 504 "-u", |
525 "\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", | 505 "\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", |
526 "[SLAVE_BUILD]/swarming_temp_dir", | 506 "[CWD]/swarming_temp_dir", |
527 "511" | 507 "511" |
528 ], | 508 ], |
529 "cwd": "[SLAVE_BUILD]", | |
530 "name": "makedirs swarming tmp dir (3)", | 509 "name": "makedirs swarming tmp dir (3)", |
531 "~followup_annotations": [ | 510 "~followup_annotations": [ |
532 "@@@STEP_LOG_LINE@python.inline@@@@", | 511 "@@@STEP_LOG_LINE@python.inline@@@@", |
533 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 512 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
534 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 513 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
535 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 514 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
536 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 515 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
537 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 516 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
538 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 517 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
539 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 518 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
540 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 519 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
541 "@@@STEP_LOG_END@python.inline@@@" | 520 "@@@STEP_LOG_END@python.inline@@@" |
542 ] | 521 ] |
543 }, | 522 }, |
544 { | 523 { |
545 "cmd": [ | 524 "cmd": [ |
546 "python", | 525 "python", |
547 "-u", | 526 "-u", |
548 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 527 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
549 "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/src/
chrome/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/sw
arming_temp_dir/skia-task-ct-nanobench-3.isolated\", \n \"--config-variab
le\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n
\"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\",
\n \"GIT_HASH\", \n 164710, \n \"--extra-variable\", \n
\"SLAVE_NUM\", \n \"3\", \n \"--extra-variable\", \n \
"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[SLAVE_BUILD]/src
/chrome\", \n \"version\": 1\n}", | 528 "{\n \"args\": [\n \"--isolate\", \n \"[CWD]/src/chrome/c
t_skps.isolate\", \n \"--isolated\", \n \"[CWD]/swarming_temp_dir/
skia-task-ct-nanobench-3.isolated\", \n \"--config-variable\", \n
\"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGU
RATION\", \n \"Release\", \n \"--extra-variable\", \n \"GIT
_HASH\", \n 164710, \n \"--extra-variable\", \n \"SLAVE_NUM
\", \n \"3\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n
\"nanobench\"\n ], \n \"dir\": \"[CWD]/src/chrome\", \n \"versi
on\": 1\n}", |
550 "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-3.isolated.gen.json" | 529 "[CWD]/swarming_temp_dir/ct-nanobench-3.isolated.gen.json" |
551 ], | 530 ], |
552 "cwd": "[SLAVE_BUILD]", | |
553 "name": "Write ct-nanobench-3.isolated.gen.json" | 531 "name": "Write ct-nanobench-3.isolated.gen.json" |
554 }, | 532 }, |
555 { | 533 { |
556 "cmd": [ | 534 "cmd": [ |
557 "python", | 535 "python", |
558 "-u", | 536 "-u", |
559 "\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", | 537 "\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", |
560 "[SLAVE_BUILD]/skps/slave4", | 538 "[CWD]/skps/slave4", |
561 "511" | 539 "511" |
562 ], | 540 ], |
563 "cwd": "[SLAVE_BUILD]", | |
564 "name": "makedirs SKPs dir (4)", | 541 "name": "makedirs SKPs dir (4)", |
565 "~followup_annotations": [ | 542 "~followup_annotations": [ |
566 "@@@STEP_LOG_LINE@python.inline@@@@", | 543 "@@@STEP_LOG_LINE@python.inline@@@@", |
567 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 544 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
568 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 545 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
569 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 546 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
570 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 547 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
571 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 548 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
572 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 549 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
573 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 550 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
574 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 551 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
575 "@@@STEP_LOG_END@python.inline@@@" | 552 "@@@STEP_LOG_END@python.inline@@@" |
576 ] | 553 ] |
577 }, | 554 }, |
578 { | 555 { |
579 "cmd": [ | 556 "cmd": [ |
580 "python", | 557 "python", |
581 "-u", | 558 "-u", |
582 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 559 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
583 "--", | 560 "--", |
584 "[DEPOT_TOOLS]/gsutil.py", | 561 "[ROOT]/b/depot_tools/gsutil.py", |
585 "----", | 562 "----", |
586 "-m", | 563 "-m", |
587 "rsync", | 564 "rsync", |
588 "-d", | 565 "-d", |
589 "-r", | 566 "-r", |
590 "gs://cluster-telemetry/skps/10k/57259e0-05dcb4c/slave4", | 567 "gs://cluster-telemetry/skps/10k/57259e0-05dcb4c/slave4", |
591 "[SLAVE_BUILD]/skps/slave4" | 568 "[CWD]/skps/slave4" |
592 ], | 569 ], |
593 "cwd": "[SLAVE_BUILD]", | |
594 "name": "gsutil rsync (4)" | 570 "name": "gsutil rsync (4)" |
595 }, | 571 }, |
596 { | 572 { |
597 "cmd": [ | 573 "cmd": [ |
598 "python", | 574 "python", |
599 "-u", | 575 "-u", |
600 "\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", | 576 "\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", |
601 "[SLAVE_BUILD]/swarming_temp_dir", | 577 "[CWD]/swarming_temp_dir", |
602 "511" | 578 "511" |
603 ], | 579 ], |
604 "cwd": "[SLAVE_BUILD]", | |
605 "name": "makedirs swarming tmp dir (4)", | 580 "name": "makedirs swarming tmp dir (4)", |
606 "~followup_annotations": [ | 581 "~followup_annotations": [ |
607 "@@@STEP_LOG_LINE@python.inline@@@@", | 582 "@@@STEP_LOG_LINE@python.inline@@@@", |
608 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 583 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
609 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 584 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
610 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 585 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
611 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 586 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
612 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 587 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
613 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 588 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
614 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 589 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
615 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 590 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
616 "@@@STEP_LOG_END@python.inline@@@" | 591 "@@@STEP_LOG_END@python.inline@@@" |
617 ] | 592 ] |
618 }, | 593 }, |
619 { | 594 { |
620 "cmd": [ | 595 "cmd": [ |
621 "python", | 596 "python", |
622 "-u", | 597 "-u", |
623 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 598 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
624 "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/src/
chrome/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/sw
arming_temp_dir/skia-task-ct-nanobench-4.isolated\", \n \"--config-variab
le\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n
\"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\",
\n \"GIT_HASH\", \n 164710, \n \"--extra-variable\", \n
\"SLAVE_NUM\", \n \"4\", \n \"--extra-variable\", \n \
"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[SLAVE_BUILD]/src
/chrome\", \n \"version\": 1\n}", | 599 "{\n \"args\": [\n \"--isolate\", \n \"[CWD]/src/chrome/c
t_skps.isolate\", \n \"--isolated\", \n \"[CWD]/swarming_temp_dir/
skia-task-ct-nanobench-4.isolated\", \n \"--config-variable\", \n
\"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGU
RATION\", \n \"Release\", \n \"--extra-variable\", \n \"GIT
_HASH\", \n 164710, \n \"--extra-variable\", \n \"SLAVE_NUM
\", \n \"4\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n
\"nanobench\"\n ], \n \"dir\": \"[CWD]/src/chrome\", \n \"versi
on\": 1\n}", |
625 "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-4.isolated.gen.json" | 600 "[CWD]/swarming_temp_dir/ct-nanobench-4.isolated.gen.json" |
626 ], | 601 ], |
627 "cwd": "[SLAVE_BUILD]", | |
628 "name": "Write ct-nanobench-4.isolated.gen.json" | 602 "name": "Write ct-nanobench-4.isolated.gen.json" |
629 }, | 603 }, |
630 { | 604 { |
631 "cmd": [ | 605 "cmd": [ |
632 "python", | 606 "python", |
633 "-u", | 607 "-u", |
634 "\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", | 608 "\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", |
635 "[SLAVE_BUILD]/skps/slave5", | 609 "[CWD]/skps/slave5", |
636 "511" | 610 "511" |
637 ], | 611 ], |
638 "cwd": "[SLAVE_BUILD]", | |
639 "name": "makedirs SKPs dir (5)", | 612 "name": "makedirs SKPs dir (5)", |
640 "~followup_annotations": [ | 613 "~followup_annotations": [ |
641 "@@@STEP_LOG_LINE@python.inline@@@@", | 614 "@@@STEP_LOG_LINE@python.inline@@@@", |
642 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 615 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
643 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 616 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
644 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 617 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
645 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 618 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
646 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 619 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
647 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 620 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
648 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 621 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
649 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 622 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
650 "@@@STEP_LOG_END@python.inline@@@" | 623 "@@@STEP_LOG_END@python.inline@@@" |
651 ] | 624 ] |
652 }, | 625 }, |
653 { | 626 { |
654 "cmd": [ | 627 "cmd": [ |
655 "python", | 628 "python", |
656 "-u", | 629 "-u", |
657 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 630 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
658 "--", | 631 "--", |
659 "[DEPOT_TOOLS]/gsutil.py", | 632 "[ROOT]/b/depot_tools/gsutil.py", |
660 "----", | 633 "----", |
661 "-m", | 634 "-m", |
662 "rsync", | 635 "rsync", |
663 "-d", | 636 "-d", |
664 "-r", | 637 "-r", |
665 "gs://cluster-telemetry/skps/10k/57259e0-05dcb4c/slave5", | 638 "gs://cluster-telemetry/skps/10k/57259e0-05dcb4c/slave5", |
666 "[SLAVE_BUILD]/skps/slave5" | 639 "[CWD]/skps/slave5" |
667 ], | 640 ], |
668 "cwd": "[SLAVE_BUILD]", | |
669 "name": "gsutil rsync (5)" | 641 "name": "gsutil rsync (5)" |
670 }, | 642 }, |
671 { | 643 { |
672 "cmd": [ | 644 "cmd": [ |
673 "python", | 645 "python", |
674 "-u", | 646 "-u", |
675 "\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", | 647 "\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", |
676 "[SLAVE_BUILD]/swarming_temp_dir", | 648 "[CWD]/swarming_temp_dir", |
677 "511" | 649 "511" |
678 ], | 650 ], |
679 "cwd": "[SLAVE_BUILD]", | |
680 "name": "makedirs swarming tmp dir (5)", | 651 "name": "makedirs swarming tmp dir (5)", |
681 "~followup_annotations": [ | 652 "~followup_annotations": [ |
682 "@@@STEP_LOG_LINE@python.inline@@@@", | 653 "@@@STEP_LOG_LINE@python.inline@@@@", |
683 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 654 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
684 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 655 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
685 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 656 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
686 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | 657 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", |
687 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | 658 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", |
688 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | 659 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", |
689 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 660 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
690 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 661 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
691 "@@@STEP_LOG_END@python.inline@@@" | 662 "@@@STEP_LOG_END@python.inline@@@" |
692 ] | 663 ] |
693 }, | 664 }, |
694 { | 665 { |
695 "cmd": [ | 666 "cmd": [ |
696 "python", | 667 "python", |
697 "-u", | 668 "-u", |
698 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 669 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
699 "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/src/
chrome/ct_skps.isolate\", \n \"--isolated\", \n \"[SLAVE_BUILD]/sw
arming_temp_dir/skia-task-ct-nanobench-5.isolated\", \n \"--config-variab
le\", \n \"OS\", \n \"linux\", \n \"--extra-variable\", \n
\"CONFIGURATION\", \n \"Release\", \n \"--extra-variable\",
\n \"GIT_HASH\", \n 164710, \n \"--extra-variable\", \n
\"SLAVE_NUM\", \n \"5\", \n \"--extra-variable\", \n \
"TOOL_NAME\", \n \"nanobench\"\n ], \n \"dir\": \"[SLAVE_BUILD]/src
/chrome\", \n \"version\": 1\n}", | 670 "{\n \"args\": [\n \"--isolate\", \n \"[CWD]/src/chrome/c
t_skps.isolate\", \n \"--isolated\", \n \"[CWD]/swarming_temp_dir/
skia-task-ct-nanobench-5.isolated\", \n \"--config-variable\", \n
\"OS\", \n \"linux\", \n \"--extra-variable\", \n \"CONFIGU
RATION\", \n \"Release\", \n \"--extra-variable\", \n \"GIT
_HASH\", \n 164710, \n \"--extra-variable\", \n \"SLAVE_NUM
\", \n \"5\", \n \"--extra-variable\", \n \"TOOL_NAME\", \n
\"nanobench\"\n ], \n \"dir\": \"[CWD]/src/chrome\", \n \"versi
on\": 1\n}", |
700 "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-5.isolated.gen.json" | 671 "[CWD]/swarming_temp_dir/ct-nanobench-5.isolated.gen.json" |
701 ], | 672 ], |
702 "cwd": "[SLAVE_BUILD]", | |
703 "name": "Write ct-nanobench-5.isolated.gen.json" | 673 "name": "Write ct-nanobench-5.isolated.gen.json" |
704 }, | 674 }, |
705 { | 675 { |
706 "cmd": [ | 676 "cmd": [ |
707 "python", | 677 "python", |
708 "-u", | 678 "-u", |
709 "RECIPE_MODULE[build::isolate]/resources/isolate.py", | 679 "RECIPE_MODULE[build::isolate]/resources/isolate.py", |
710 "[SLAVE_BUILD]/swarming.client", | 680 "[CWD]/swarming.client", |
711 "batcharchive", | 681 "batcharchive", |
712 "--dump-json", | 682 "--dump-json", |
713 "/path/to/tmp/json", | 683 "/path/to/tmp/json", |
714 "--isolate-server", | 684 "--isolate-server", |
715 "https://isolateserver.appspot.com", | 685 "https://isolateserver.appspot.com", |
716 "--verbose", | 686 "--verbose", |
717 "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-1.isolated.gen.json", | 687 "[CWD]/swarming_temp_dir/ct-nanobench-1.isolated.gen.json", |
718 "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-2.isolated.gen.json", | 688 "[CWD]/swarming_temp_dir/ct-nanobench-2.isolated.gen.json", |
719 "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-3.isolated.gen.json", | 689 "[CWD]/swarming_temp_dir/ct-nanobench-3.isolated.gen.json", |
720 "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-4.isolated.gen.json", | 690 "[CWD]/swarming_temp_dir/ct-nanobench-4.isolated.gen.json", |
721 "[SLAVE_BUILD]/swarming_temp_dir/ct-nanobench-5.isolated.gen.json" | 691 "[CWD]/swarming_temp_dir/ct-nanobench-5.isolated.gen.json" |
722 ], | 692 ], |
723 "cwd": "[SLAVE_BUILD]", | |
724 "name": "isolate tests", | 693 "name": "isolate tests", |
725 "~followup_annotations": [ | 694 "~followup_annotations": [ |
726 "@@@STEP_LOG_LINE@json.output@{@@@", | 695 "@@@STEP_LOG_LINE@json.output@{@@@", |
727 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-1\": \"[dummy hash for ct-n
anobench-1]\", @@@", | 696 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-1\": \"[dummy hash for ct-n
anobench-1]\", @@@", |
728 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-2\": \"[dummy hash for ct-n
anobench-2]\", @@@", | 697 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-2\": \"[dummy hash for ct-n
anobench-2]\", @@@", |
729 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-3\": \"[dummy hash for ct-n
anobench-3]\", @@@", | 698 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-3\": \"[dummy hash for ct-n
anobench-3]\", @@@", |
730 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-4\": \"[dummy hash for ct-n
anobench-4]\", @@@", | 699 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-4\": \"[dummy hash for ct-n
anobench-4]\", @@@", |
731 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-5\": \"[dummy hash for ct-n
anobench-5]\"@@@", | 700 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-5\": \"[dummy hash for ct-n
anobench-5]\"@@@", |
732 "@@@STEP_LOG_LINE@json.output@}@@@", | 701 "@@@STEP_LOG_LINE@json.output@}@@@", |
733 "@@@STEP_LOG_END@json.output@@@", | 702 "@@@STEP_LOG_END@json.output@@@", |
734 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"ct-nanobench-1\": \"[dummy hash for
ct-nanobench-1]\", \"ct-nanobench-2\": \"[dummy hash for ct-nanobench-2]\", \"c
t-nanobench-3\": \"[dummy hash for ct-nanobench-3]\", \"ct-nanobench-4\": \"[dum
my hash for ct-nanobench-4]\", \"ct-nanobench-5\": \"[dummy hash for ct-nanobenc
h-5]\"}@@@" | 703 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"ct-nanobench-1\": \"[dummy hash for
ct-nanobench-1]\", \"ct-nanobench-2\": \"[dummy hash for ct-nanobench-2]\", \"c
t-nanobench-3\": \"[dummy hash for ct-nanobench-3]\", \"ct-nanobench-4\": \"[dum
my hash for ct-nanobench-4]\", \"ct-nanobench-5\": \"[dummy hash for ct-nanobenc
h-5]\"}@@@" |
735 ] | 704 ] |
736 }, | 705 }, |
737 { | 706 { |
738 "cmd": [ | 707 "cmd": [ |
739 "python", | 708 "python", |
740 "-u", | 709 "-u", |
741 "[SLAVE_BUILD]/swarming.client/swarming.py", | 710 "[CWD]/swarming.client/swarming.py", |
742 "trigger", | 711 "trigger", |
743 "--swarming", | 712 "--swarming", |
744 "https://chromium-swarm.appspot.com", | 713 "https://chromium-swarm.appspot.com", |
745 "--isolate-server", | 714 "--isolate-server", |
746 "https://isolateserver.appspot.com", | 715 "https://isolateserver.appspot.com", |
747 "--priority", | 716 "--priority", |
748 "90", | 717 "90", |
749 "--shards", | 718 "--shards", |
750 "1", | 719 "1", |
751 "--task-name", | 720 "--task-name", |
(...skipping 23 matching lines...) Expand all Loading... |
775 "--tag", | 744 "--tag", |
776 "data:[dummy hash for ct-nanobench-1]", | 745 "data:[dummy hash for ct-nanobench-1]", |
777 "--tag", | 746 "--tag", |
778 "name:ct-nanobench-1", | 747 "name:ct-nanobench-1", |
779 "--tag", | 748 "--tag", |
780 "os:Ubuntu-14.04", | 749 "os:Ubuntu-14.04", |
781 "--tag", | 750 "--tag", |
782 "stepname:ct-nanobench-1 on Ubuntu-14.04", | 751 "stepname:ct-nanobench-1 on Ubuntu-14.04", |
783 "[dummy hash for ct-nanobench-1]" | 752 "[dummy hash for ct-nanobench-1]" |
784 ], | 753 ], |
785 "cwd": "[SLAVE_BUILD]", | |
786 "name": "[trigger] ct-nanobench-1 on Ubuntu-14.04", | 754 "name": "[trigger] ct-nanobench-1 on Ubuntu-14.04", |
787 "~followup_annotations": [ | 755 "~followup_annotations": [ |
788 "@@@STEP_LOG_LINE@json.output@{@@@", | 756 "@@@STEP_LOG_LINE@json.output@{@@@", |
789 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"ct-nanobench-1/Ubunt
u-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs
/-1\", @@@", | 757 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"ct-nanobench-1/Ubunt
u-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs
/-1\", @@@", |
790 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 758 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
791 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-1/Ubuntu-14.04/[dummy has
/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs/-1\": {@@@", | 759 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-1/Ubuntu-14.04/[dummy has
/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs/-1\": {@@@", |
792 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 760 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
793 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 761 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
794 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 762 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
795 "@@@STEP_LOG_LINE@json.output@ }@@@", | 763 "@@@STEP_LOG_LINE@json.output@ }@@@", |
796 "@@@STEP_LOG_LINE@json.output@ }@@@", | 764 "@@@STEP_LOG_LINE@json.output@ }@@@", |
797 "@@@STEP_LOG_LINE@json.output@}@@@", | 765 "@@@STEP_LOG_LINE@json.output@}@@@", |
798 "@@@STEP_LOG_END@json.output@@@", | 766 "@@@STEP_LOG_END@json.output@@@", |
799 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 767 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
800 ] | 768 ] |
801 }, | 769 }, |
802 { | 770 { |
803 "cmd": [ | 771 "cmd": [ |
804 "python", | 772 "python", |
805 "-u", | 773 "-u", |
806 "[SLAVE_BUILD]/swarming.client/swarming.py", | 774 "[CWD]/swarming.client/swarming.py", |
807 "trigger", | 775 "trigger", |
808 "--swarming", | 776 "--swarming", |
809 "https://chromium-swarm.appspot.com", | 777 "https://chromium-swarm.appspot.com", |
810 "--isolate-server", | 778 "--isolate-server", |
811 "https://isolateserver.appspot.com", | 779 "https://isolateserver.appspot.com", |
812 "--priority", | 780 "--priority", |
813 "90", | 781 "90", |
814 "--shards", | 782 "--shards", |
815 "1", | 783 "1", |
816 "--task-name", | 784 "--task-name", |
(...skipping 23 matching lines...) Expand all Loading... |
840 "--tag", | 808 "--tag", |
841 "data:[dummy hash for ct-nanobench-2]", | 809 "data:[dummy hash for ct-nanobench-2]", |
842 "--tag", | 810 "--tag", |
843 "name:ct-nanobench-2", | 811 "name:ct-nanobench-2", |
844 "--tag", | 812 "--tag", |
845 "os:Ubuntu-14.04", | 813 "os:Ubuntu-14.04", |
846 "--tag", | 814 "--tag", |
847 "stepname:ct-nanobench-2 on Ubuntu-14.04", | 815 "stepname:ct-nanobench-2 on Ubuntu-14.04", |
848 "[dummy hash for ct-nanobench-2]" | 816 "[dummy hash for ct-nanobench-2]" |
849 ], | 817 ], |
850 "cwd": "[SLAVE_BUILD]", | |
851 "name": "[trigger] ct-nanobench-2 on Ubuntu-14.04", | 818 "name": "[trigger] ct-nanobench-2 on Ubuntu-14.04", |
852 "~followup_annotations": [ | 819 "~followup_annotations": [ |
853 "@@@STEP_LOG_LINE@json.output@{@@@", | 820 "@@@STEP_LOG_LINE@json.output@{@@@", |
854 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"ct-nanobench-2/Ubunt
u-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs
/-1\", @@@", | 821 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"ct-nanobench-2/Ubunt
u-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs
/-1\", @@@", |
855 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 822 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
856 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-2/Ubuntu-14.04/[dummy has
/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs/-1\": {@@@", | 823 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-2/Ubuntu-14.04/[dummy has
/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs/-1\": {@@@", |
857 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 824 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
858 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 825 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
859 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 826 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
860 "@@@STEP_LOG_LINE@json.output@ }@@@", | 827 "@@@STEP_LOG_LINE@json.output@ }@@@", |
861 "@@@STEP_LOG_LINE@json.output@ }@@@", | 828 "@@@STEP_LOG_LINE@json.output@ }@@@", |
862 "@@@STEP_LOG_LINE@json.output@}@@@", | 829 "@@@STEP_LOG_LINE@json.output@}@@@", |
863 "@@@STEP_LOG_END@json.output@@@", | 830 "@@@STEP_LOG_END@json.output@@@", |
864 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 831 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
865 ] | 832 ] |
866 }, | 833 }, |
867 { | 834 { |
868 "cmd": [ | 835 "cmd": [ |
869 "python", | 836 "python", |
870 "-u", | 837 "-u", |
871 "[SLAVE_BUILD]/swarming.client/swarming.py", | 838 "[CWD]/swarming.client/swarming.py", |
872 "trigger", | 839 "trigger", |
873 "--swarming", | 840 "--swarming", |
874 "https://chromium-swarm.appspot.com", | 841 "https://chromium-swarm.appspot.com", |
875 "--isolate-server", | 842 "--isolate-server", |
876 "https://isolateserver.appspot.com", | 843 "https://isolateserver.appspot.com", |
877 "--priority", | 844 "--priority", |
878 "90", | 845 "90", |
879 "--shards", | 846 "--shards", |
880 "1", | 847 "1", |
881 "--task-name", | 848 "--task-name", |
(...skipping 23 matching lines...) Expand all Loading... |
905 "--tag", | 872 "--tag", |
906 "data:[dummy hash for ct-nanobench-3]", | 873 "data:[dummy hash for ct-nanobench-3]", |
907 "--tag", | 874 "--tag", |
908 "name:ct-nanobench-3", | 875 "name:ct-nanobench-3", |
909 "--tag", | 876 "--tag", |
910 "os:Ubuntu-14.04", | 877 "os:Ubuntu-14.04", |
911 "--tag", | 878 "--tag", |
912 "stepname:ct-nanobench-3 on Ubuntu-14.04", | 879 "stepname:ct-nanobench-3 on Ubuntu-14.04", |
913 "[dummy hash for ct-nanobench-3]" | 880 "[dummy hash for ct-nanobench-3]" |
914 ], | 881 ], |
915 "cwd": "[SLAVE_BUILD]", | |
916 "name": "[trigger] ct-nanobench-3 on Ubuntu-14.04", | 882 "name": "[trigger] ct-nanobench-3 on Ubuntu-14.04", |
917 "~followup_annotations": [ | 883 "~followup_annotations": [ |
918 "@@@STEP_LOG_LINE@json.output@{@@@", | 884 "@@@STEP_LOG_LINE@json.output@{@@@", |
919 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"ct-nanobench-3/Ubunt
u-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs
/-1\", @@@", | 885 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"ct-nanobench-3/Ubunt
u-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs
/-1\", @@@", |
920 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 886 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
921 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-3/Ubuntu-14.04/[dummy has
/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs/-1\": {@@@", | 887 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-3/Ubuntu-14.04/[dummy has
/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs/-1\": {@@@", |
922 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 888 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
923 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 889 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
924 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 890 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
925 "@@@STEP_LOG_LINE@json.output@ }@@@", | 891 "@@@STEP_LOG_LINE@json.output@ }@@@", |
926 "@@@STEP_LOG_LINE@json.output@ }@@@", | 892 "@@@STEP_LOG_LINE@json.output@ }@@@", |
927 "@@@STEP_LOG_LINE@json.output@}@@@", | 893 "@@@STEP_LOG_LINE@json.output@}@@@", |
928 "@@@STEP_LOG_END@json.output@@@", | 894 "@@@STEP_LOG_END@json.output@@@", |
929 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 895 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
930 ] | 896 ] |
931 }, | 897 }, |
932 { | 898 { |
933 "cmd": [ | 899 "cmd": [ |
934 "python", | 900 "python", |
935 "-u", | 901 "-u", |
936 "[SLAVE_BUILD]/swarming.client/swarming.py", | 902 "[CWD]/swarming.client/swarming.py", |
937 "trigger", | 903 "trigger", |
938 "--swarming", | 904 "--swarming", |
939 "https://chromium-swarm.appspot.com", | 905 "https://chromium-swarm.appspot.com", |
940 "--isolate-server", | 906 "--isolate-server", |
941 "https://isolateserver.appspot.com", | 907 "https://isolateserver.appspot.com", |
942 "--priority", | 908 "--priority", |
943 "90", | 909 "90", |
944 "--shards", | 910 "--shards", |
945 "1", | 911 "1", |
946 "--task-name", | 912 "--task-name", |
(...skipping 23 matching lines...) Expand all Loading... |
970 "--tag", | 936 "--tag", |
971 "data:[dummy hash for ct-nanobench-4]", | 937 "data:[dummy hash for ct-nanobench-4]", |
972 "--tag", | 938 "--tag", |
973 "name:ct-nanobench-4", | 939 "name:ct-nanobench-4", |
974 "--tag", | 940 "--tag", |
975 "os:Ubuntu-14.04", | 941 "os:Ubuntu-14.04", |
976 "--tag", | 942 "--tag", |
977 "stepname:ct-nanobench-4 on Ubuntu-14.04", | 943 "stepname:ct-nanobench-4 on Ubuntu-14.04", |
978 "[dummy hash for ct-nanobench-4]" | 944 "[dummy hash for ct-nanobench-4]" |
979 ], | 945 ], |
980 "cwd": "[SLAVE_BUILD]", | |
981 "name": "[trigger] ct-nanobench-4 on Ubuntu-14.04", | 946 "name": "[trigger] ct-nanobench-4 on Ubuntu-14.04", |
982 "~followup_annotations": [ | 947 "~followup_annotations": [ |
983 "@@@STEP_LOG_LINE@json.output@{@@@", | 948 "@@@STEP_LOG_LINE@json.output@{@@@", |
984 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"ct-nanobench-4/Ubunt
u-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs
/-1\", @@@", | 949 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"ct-nanobench-4/Ubunt
u-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs
/-1\", @@@", |
985 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 950 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
986 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-4/Ubuntu-14.04/[dummy has
/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs/-1\": {@@@", | 951 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-4/Ubuntu-14.04/[dummy has
/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs/-1\": {@@@", |
987 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 952 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
988 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 953 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
989 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 954 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
990 "@@@STEP_LOG_LINE@json.output@ }@@@", | 955 "@@@STEP_LOG_LINE@json.output@ }@@@", |
991 "@@@STEP_LOG_LINE@json.output@ }@@@", | 956 "@@@STEP_LOG_LINE@json.output@ }@@@", |
992 "@@@STEP_LOG_LINE@json.output@}@@@", | 957 "@@@STEP_LOG_LINE@json.output@}@@@", |
993 "@@@STEP_LOG_END@json.output@@@", | 958 "@@@STEP_LOG_END@json.output@@@", |
994 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 959 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
995 ] | 960 ] |
996 }, | 961 }, |
997 { | 962 { |
998 "cmd": [ | 963 "cmd": [ |
999 "python", | 964 "python", |
1000 "-u", | 965 "-u", |
1001 "[SLAVE_BUILD]/swarming.client/swarming.py", | 966 "[CWD]/swarming.client/swarming.py", |
1002 "trigger", | 967 "trigger", |
1003 "--swarming", | 968 "--swarming", |
1004 "https://chromium-swarm.appspot.com", | 969 "https://chromium-swarm.appspot.com", |
1005 "--isolate-server", | 970 "--isolate-server", |
1006 "https://isolateserver.appspot.com", | 971 "https://isolateserver.appspot.com", |
1007 "--priority", | 972 "--priority", |
1008 "90", | 973 "90", |
1009 "--shards", | 974 "--shards", |
1010 "1", | 975 "1", |
1011 "--task-name", | 976 "--task-name", |
(...skipping 23 matching lines...) Expand all Loading... |
1035 "--tag", | 1000 "--tag", |
1036 "data:[dummy hash for ct-nanobench-5]", | 1001 "data:[dummy hash for ct-nanobench-5]", |
1037 "--tag", | 1002 "--tag", |
1038 "name:ct-nanobench-5", | 1003 "name:ct-nanobench-5", |
1039 "--tag", | 1004 "--tag", |
1040 "os:Ubuntu-14.04", | 1005 "os:Ubuntu-14.04", |
1041 "--tag", | 1006 "--tag", |
1042 "stepname:ct-nanobench-5 on Ubuntu-14.04", | 1007 "stepname:ct-nanobench-5 on Ubuntu-14.04", |
1043 "[dummy hash for ct-nanobench-5]" | 1008 "[dummy hash for ct-nanobench-5]" |
1044 ], | 1009 ], |
1045 "cwd": "[SLAVE_BUILD]", | |
1046 "name": "[trigger] ct-nanobench-5 on Ubuntu-14.04", | 1010 "name": "[trigger] ct-nanobench-5 on Ubuntu-14.04", |
1047 "~followup_annotations": [ | 1011 "~followup_annotations": [ |
1048 "@@@STEP_LOG_LINE@json.output@{@@@", | 1012 "@@@STEP_LOG_LINE@json.output@{@@@", |
1049 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"ct-nanobench-5/Ubunt
u-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs
/-1\", @@@", | 1013 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"ct-nanobench-5/Ubunt
u-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs
/-1\", @@@", |
1050 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 1014 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
1051 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-5/Ubuntu-14.04/[dummy has
/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs/-1\": {@@@", | 1015 "@@@STEP_LOG_LINE@json.output@ \"ct-nanobench-5/Ubuntu-14.04/[dummy has
/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-CT_BENCH_10k_SKPs/-1\": {@@@", |
1052 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 1016 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
1053 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 1017 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
1054 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 1018 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
1055 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1019 "@@@STEP_LOG_LINE@json.output@ }@@@", |
1056 "@@@STEP_LOG_LINE@json.output@ }@@@", | 1020 "@@@STEP_LOG_LINE@json.output@ }@@@", |
1057 "@@@STEP_LOG_LINE@json.output@}@@@", | 1021 "@@@STEP_LOG_LINE@json.output@}@@@", |
1058 "@@@STEP_LOG_END@json.output@@@", | 1022 "@@@STEP_LOG_END@json.output@@@", |
1059 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 1023 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
1060 ] | 1024 ] |
1061 }, | 1025 }, |
1062 { | 1026 { |
1063 "cmd": [ | 1027 "cmd": [ |
1064 "python", | 1028 "python", |
1065 "-u", | 1029 "-u", |
1066 "[SLAVE_BUILD]/swarming.client/swarming.py", | 1030 "[CWD]/swarming.client/swarming.py", |
1067 "collect", | 1031 "collect", |
1068 "--swarming", | 1032 "--swarming", |
1069 "https://chromium-swarm.appspot.com", | 1033 "https://chromium-swarm.appspot.com", |
1070 "--decorate", | 1034 "--decorate", |
1071 "--print-status-updates", | 1035 "--print-status-updates", |
1072 "--shards", | 1036 "--shards", |
1073 "1", | 1037 "1", |
1074 "ct-nanobench-1/Ubuntu-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_6
4-Release-CT_BENCH_10k_SKPs/-1", | 1038 "ct-nanobench-1/Ubuntu-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_6
4-Release-CT_BENCH_10k_SKPs/-1", |
1075 "--task-summary-json", | 1039 "--task-summary-json", |
1076 "/path/to/tmp/json", | 1040 "/path/to/tmp/json", |
1077 "--task-output-dir", | 1041 "--task-output-dir", |
1078 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-1" | 1042 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-1" |
1079 ], | 1043 ], |
1080 "cwd": "[SLAVE_BUILD]", | |
1081 "name": "ct-nanobench-1 on Ubuntu-14.04", | 1044 "name": "ct-nanobench-1 on Ubuntu-14.04", |
1082 "~followup_annotations": [ | 1045 "~followup_annotations": [ |
1083 "@@@STEP_TEXT@swarming pending 71s@@@", | 1046 "@@@STEP_TEXT@swarming pending 71s@@@", |
1084 "@@@STEP_LOG_LINE@json.output@{@@@", | 1047 "@@@STEP_LOG_LINE@json.output@{@@@", |
1085 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@", | 1048 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@", |
1086 "@@@STEP_LOG_LINE@json.output@ {@@@", | 1049 "@@@STEP_LOG_LINE@json.output@ {@@@", |
1087 "@@@STEP_LOG_LINE@json.output@ \"abandoned_ts\": null, @@@", | 1050 "@@@STEP_LOG_LINE@json.output@ \"abandoned_ts\": null, @@@", |
1088 "@@@STEP_LOG_LINE@json.output@ \"bot_id\": \"vm30\", @@@", | 1051 "@@@STEP_LOG_LINE@json.output@ \"bot_id\": \"vm30\", @@@", |
1089 "@@@STEP_LOG_LINE@json.output@ \"completed_ts\": \"2014-09-25T01:42:0
0.123\", @@@", | 1052 "@@@STEP_LOG_LINE@json.output@ \"completed_ts\": \"2014-09-25T01:42:0
0.123\", @@@", |
1090 "@@@STEP_LOG_LINE@json.output@ \"created_ts\": \"2014-09-25T01:41:00.
123\", @@@", | 1053 "@@@STEP_LOG_LINE@json.output@ \"created_ts\": \"2014-09-25T01:41:00.
123\", @@@", |
(...skipping 29 matching lines...) Expand all Loading... |
1120 "@@@STEP_LOG_LINE@json.output@}@@@", | 1083 "@@@STEP_LOG_LINE@json.output@}@@@", |
1121 "@@@STEP_LOG_END@json.output@@@", | 1084 "@@@STEP_LOG_END@json.output@@@", |
1122 "@@@STEP_LINK@shard #0 isolated out@blah@@@" | 1085 "@@@STEP_LINK@shard #0 isolated out@blah@@@" |
1123 ] | 1086 ] |
1124 }, | 1087 }, |
1125 { | 1088 { |
1126 "cmd": [ | 1089 "cmd": [ |
1127 "python", | 1090 "python", |
1128 "-u", | 1091 "-u", |
1129 "\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(
sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys
.argv[1]), f)\n", | 1092 "\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(
sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys
.argv[1]), f)\n", |
1130 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-1/0", | 1093 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-1/0", |
1131 "/path/to/tmp/json" | 1094 "/path/to/tmp/json" |
1132 ], | 1095 ], |
1133 "cwd": "[SLAVE_BUILD]", | |
1134 "name": "listdir output dir", | 1096 "name": "listdir output dir", |
1135 "~followup_annotations": [ | 1097 "~followup_annotations": [ |
1136 "@@@STEP_LOG_LINE@json.output@[@@@", | 1098 "@@@STEP_LOG_LINE@json.output@[@@@", |
1137 "@@@STEP_LOG_LINE@json.output@ \"file 1\", @@@", | 1099 "@@@STEP_LOG_LINE@json.output@ \"file 1\", @@@", |
1138 "@@@STEP_LOG_LINE@json.output@ \"file 2\"@@@", | 1100 "@@@STEP_LOG_LINE@json.output@ \"file 2\"@@@", |
1139 "@@@STEP_LOG_LINE@json.output@]@@@", | 1101 "@@@STEP_LOG_LINE@json.output@]@@@", |
1140 "@@@STEP_LOG_END@json.output@@@", | 1102 "@@@STEP_LOG_END@json.output@@@", |
1141 "@@@STEP_LOG_LINE@python.inline@@@@", | 1103 "@@@STEP_LOG_LINE@python.inline@@@@", |
1142 "@@@STEP_LOG_LINE@python.inline@import json, os, sys@@@", | 1104 "@@@STEP_LOG_LINE@python.inline@import json, os, sys@@@", |
1143 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]) and os.path
.isdir(sys.argv[1]):@@@", | 1105 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]) and os.path
.isdir(sys.argv[1]):@@@", |
1144 "@@@STEP_LOG_LINE@python.inline@ with open(sys.argv[2], 'w') as f:@@@", | 1106 "@@@STEP_LOG_LINE@python.inline@ with open(sys.argv[2], 'w') as f:@@@", |
1145 "@@@STEP_LOG_LINE@python.inline@ json.dump(os.listdir(sys.argv[1]), f)@
@@", | 1107 "@@@STEP_LOG_LINE@python.inline@ json.dump(os.listdir(sys.argv[1]), f)@
@@", |
1146 "@@@STEP_LOG_END@python.inline@@@" | 1108 "@@@STEP_LOG_END@python.inline@@@" |
1147 ] | 1109 ] |
1148 }, | 1110 }, |
1149 { | 1111 { |
1150 "cmd": [ | 1112 "cmd": [ |
1151 "python", | 1113 "python", |
1152 "-u", | 1114 "-u", |
1153 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 1115 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
1154 "--", | 1116 "--", |
1155 "[DEPOT_TOOLS]/gsutil.py", | 1117 "[ROOT]/b/depot_tools/gsutil.py", |
1156 "----", | 1118 "----", |
1157 "cp", | 1119 "cp", |
1158 "-R", | 1120 "-R", |
1159 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-1/0/file 1", | 1121 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-1/0/file 1", |
1160 "gs://skia-perf/ct/10k/2012/05/14/12/" | 1122 "gs://skia-perf/ct/10k/2012/05/14/12/" |
1161 ], | 1123 ], |
1162 "cwd": "[SLAVE_BUILD]", | |
1163 "env": { | 1124 "env": { |
1164 "AWS_CREDENTIAL_FILE": null, | 1125 "AWS_CREDENTIAL_FILE": null, |
1165 "BOTO_CONFIG": null | 1126 "BOTO_CONFIG": null |
1166 }, | 1127 }, |
1167 "name": "gsutil upload json output", | 1128 "name": "gsutil upload json output", |
1168 "~followup_annotations": [ | 1129 "~followup_annotations": [ |
1169 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" | 1130 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" |
1170 ] | 1131 ] |
1171 }, | 1132 }, |
1172 { | 1133 { |
1173 "cmd": [ | 1134 "cmd": [ |
1174 "python", | 1135 "python", |
1175 "-u", | 1136 "-u", |
1176 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 1137 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
1177 "--", | 1138 "--", |
1178 "[DEPOT_TOOLS]/gsutil.py", | 1139 "[ROOT]/b/depot_tools/gsutil.py", |
1179 "----", | 1140 "----", |
1180 "cp", | 1141 "cp", |
1181 "-R", | 1142 "-R", |
1182 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-1/0/file 2", | 1143 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-1/0/file 2", |
1183 "gs://skia-perf/ct/10k/2012/05/14/12/" | 1144 "gs://skia-perf/ct/10k/2012/05/14/12/" |
1184 ], | 1145 ], |
1185 "cwd": "[SLAVE_BUILD]", | |
1186 "env": { | 1146 "env": { |
1187 "AWS_CREDENTIAL_FILE": null, | 1147 "AWS_CREDENTIAL_FILE": null, |
1188 "BOTO_CONFIG": null | 1148 "BOTO_CONFIG": null |
1189 }, | 1149 }, |
1190 "name": "gsutil upload json output (2)", | 1150 "name": "gsutil upload json output (2)", |
1191 "~followup_annotations": [ | 1151 "~followup_annotations": [ |
1192 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" | 1152 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" |
1193 ] | 1153 ] |
1194 }, | 1154 }, |
1195 { | 1155 { |
1196 "cmd": [ | 1156 "cmd": [ |
1197 "python", | 1157 "python", |
1198 "-u", | 1158 "-u", |
1199 "[SLAVE_BUILD]/swarming.client/swarming.py", | 1159 "[CWD]/swarming.client/swarming.py", |
1200 "collect", | 1160 "collect", |
1201 "--swarming", | 1161 "--swarming", |
1202 "https://chromium-swarm.appspot.com", | 1162 "https://chromium-swarm.appspot.com", |
1203 "--decorate", | 1163 "--decorate", |
1204 "--print-status-updates", | 1164 "--print-status-updates", |
1205 "--shards", | 1165 "--shards", |
1206 "1", | 1166 "1", |
1207 "ct-nanobench-2/Ubuntu-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_6
4-Release-CT_BENCH_10k_SKPs/-1", | 1167 "ct-nanobench-2/Ubuntu-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_6
4-Release-CT_BENCH_10k_SKPs/-1", |
1208 "--task-summary-json", | 1168 "--task-summary-json", |
1209 "/path/to/tmp/json", | 1169 "/path/to/tmp/json", |
1210 "--task-output-dir", | 1170 "--task-output-dir", |
1211 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-2" | 1171 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-2" |
1212 ], | 1172 ], |
1213 "cwd": "[SLAVE_BUILD]", | |
1214 "name": "ct-nanobench-2 on Ubuntu-14.04", | 1173 "name": "ct-nanobench-2 on Ubuntu-14.04", |
1215 "~followup_annotations": [ | 1174 "~followup_annotations": [ |
1216 "@@@STEP_TEXT@swarming pending 71s@@@", | 1175 "@@@STEP_TEXT@swarming pending 71s@@@", |
1217 "@@@STEP_LOG_LINE@json.output@{@@@", | 1176 "@@@STEP_LOG_LINE@json.output@{@@@", |
1218 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@", | 1177 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@", |
1219 "@@@STEP_LOG_LINE@json.output@ {@@@", | 1178 "@@@STEP_LOG_LINE@json.output@ {@@@", |
1220 "@@@STEP_LOG_LINE@json.output@ \"abandoned_ts\": null, @@@", | 1179 "@@@STEP_LOG_LINE@json.output@ \"abandoned_ts\": null, @@@", |
1221 "@@@STEP_LOG_LINE@json.output@ \"bot_id\": \"vm30\", @@@", | 1180 "@@@STEP_LOG_LINE@json.output@ \"bot_id\": \"vm30\", @@@", |
1222 "@@@STEP_LOG_LINE@json.output@ \"completed_ts\": \"2014-09-25T01:42:0
0.123\", @@@", | 1181 "@@@STEP_LOG_LINE@json.output@ \"completed_ts\": \"2014-09-25T01:42:0
0.123\", @@@", |
1223 "@@@STEP_LOG_LINE@json.output@ \"created_ts\": \"2014-09-25T01:41:00.
123\", @@@", | 1182 "@@@STEP_LOG_LINE@json.output@ \"created_ts\": \"2014-09-25T01:41:00.
123\", @@@", |
(...skipping 29 matching lines...) Expand all Loading... |
1253 "@@@STEP_LOG_LINE@json.output@}@@@", | 1212 "@@@STEP_LOG_LINE@json.output@}@@@", |
1254 "@@@STEP_LOG_END@json.output@@@", | 1213 "@@@STEP_LOG_END@json.output@@@", |
1255 "@@@STEP_LINK@shard #0 isolated out@blah@@@" | 1214 "@@@STEP_LINK@shard #0 isolated out@blah@@@" |
1256 ] | 1215 ] |
1257 }, | 1216 }, |
1258 { | 1217 { |
1259 "cmd": [ | 1218 "cmd": [ |
1260 "python", | 1219 "python", |
1261 "-u", | 1220 "-u", |
1262 "\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(
sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys
.argv[1]), f)\n", | 1221 "\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(
sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys
.argv[1]), f)\n", |
1263 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-2/0", | 1222 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-2/0", |
1264 "/path/to/tmp/json" | 1223 "/path/to/tmp/json" |
1265 ], | 1224 ], |
1266 "cwd": "[SLAVE_BUILD]", | |
1267 "name": "listdir output dir (2)", | 1225 "name": "listdir output dir (2)", |
1268 "~followup_annotations": [ | 1226 "~followup_annotations": [ |
1269 "@@@STEP_LOG_LINE@json.output@[@@@", | 1227 "@@@STEP_LOG_LINE@json.output@[@@@", |
1270 "@@@STEP_LOG_LINE@json.output@ \"file 1\", @@@", | 1228 "@@@STEP_LOG_LINE@json.output@ \"file 1\", @@@", |
1271 "@@@STEP_LOG_LINE@json.output@ \"file 2\"@@@", | 1229 "@@@STEP_LOG_LINE@json.output@ \"file 2\"@@@", |
1272 "@@@STEP_LOG_LINE@json.output@]@@@", | 1230 "@@@STEP_LOG_LINE@json.output@]@@@", |
1273 "@@@STEP_LOG_END@json.output@@@", | 1231 "@@@STEP_LOG_END@json.output@@@", |
1274 "@@@STEP_LOG_LINE@python.inline@@@@", | 1232 "@@@STEP_LOG_LINE@python.inline@@@@", |
1275 "@@@STEP_LOG_LINE@python.inline@import json, os, sys@@@", | 1233 "@@@STEP_LOG_LINE@python.inline@import json, os, sys@@@", |
1276 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]) and os.path
.isdir(sys.argv[1]):@@@", | 1234 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]) and os.path
.isdir(sys.argv[1]):@@@", |
1277 "@@@STEP_LOG_LINE@python.inline@ with open(sys.argv[2], 'w') as f:@@@", | 1235 "@@@STEP_LOG_LINE@python.inline@ with open(sys.argv[2], 'w') as f:@@@", |
1278 "@@@STEP_LOG_LINE@python.inline@ json.dump(os.listdir(sys.argv[1]), f)@
@@", | 1236 "@@@STEP_LOG_LINE@python.inline@ json.dump(os.listdir(sys.argv[1]), f)@
@@", |
1279 "@@@STEP_LOG_END@python.inline@@@" | 1237 "@@@STEP_LOG_END@python.inline@@@" |
1280 ] | 1238 ] |
1281 }, | 1239 }, |
1282 { | 1240 { |
1283 "cmd": [ | 1241 "cmd": [ |
1284 "python", | 1242 "python", |
1285 "-u", | 1243 "-u", |
1286 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 1244 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
1287 "--", | 1245 "--", |
1288 "[DEPOT_TOOLS]/gsutil.py", | 1246 "[ROOT]/b/depot_tools/gsutil.py", |
1289 "----", | 1247 "----", |
1290 "cp", | 1248 "cp", |
1291 "-R", | 1249 "-R", |
1292 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-2/0/file 1", | 1250 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-2/0/file 1", |
1293 "gs://skia-perf/ct/10k/2012/05/14/12/" | 1251 "gs://skia-perf/ct/10k/2012/05/14/12/" |
1294 ], | 1252 ], |
1295 "cwd": "[SLAVE_BUILD]", | |
1296 "env": { | 1253 "env": { |
1297 "AWS_CREDENTIAL_FILE": null, | 1254 "AWS_CREDENTIAL_FILE": null, |
1298 "BOTO_CONFIG": null | 1255 "BOTO_CONFIG": null |
1299 }, | 1256 }, |
1300 "name": "gsutil upload json output (3)", | 1257 "name": "gsutil upload json output (3)", |
1301 "~followup_annotations": [ | 1258 "~followup_annotations": [ |
1302 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" | 1259 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" |
1303 ] | 1260 ] |
1304 }, | 1261 }, |
1305 { | 1262 { |
1306 "cmd": [ | 1263 "cmd": [ |
1307 "python", | 1264 "python", |
1308 "-u", | 1265 "-u", |
1309 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 1266 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
1310 "--", | 1267 "--", |
1311 "[DEPOT_TOOLS]/gsutil.py", | 1268 "[ROOT]/b/depot_tools/gsutil.py", |
1312 "----", | 1269 "----", |
1313 "cp", | 1270 "cp", |
1314 "-R", | 1271 "-R", |
1315 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-2/0/file 2", | 1272 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-2/0/file 2", |
1316 "gs://skia-perf/ct/10k/2012/05/14/12/" | 1273 "gs://skia-perf/ct/10k/2012/05/14/12/" |
1317 ], | 1274 ], |
1318 "cwd": "[SLAVE_BUILD]", | |
1319 "env": { | 1275 "env": { |
1320 "AWS_CREDENTIAL_FILE": null, | 1276 "AWS_CREDENTIAL_FILE": null, |
1321 "BOTO_CONFIG": null | 1277 "BOTO_CONFIG": null |
1322 }, | 1278 }, |
1323 "name": "gsutil upload json output (4)", | 1279 "name": "gsutil upload json output (4)", |
1324 "~followup_annotations": [ | 1280 "~followup_annotations": [ |
1325 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" | 1281 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" |
1326 ] | 1282 ] |
1327 }, | 1283 }, |
1328 { | 1284 { |
1329 "cmd": [ | 1285 "cmd": [ |
1330 "python", | 1286 "python", |
1331 "-u", | 1287 "-u", |
1332 "[SLAVE_BUILD]/swarming.client/swarming.py", | 1288 "[CWD]/swarming.client/swarming.py", |
1333 "collect", | 1289 "collect", |
1334 "--swarming", | 1290 "--swarming", |
1335 "https://chromium-swarm.appspot.com", | 1291 "https://chromium-swarm.appspot.com", |
1336 "--decorate", | 1292 "--decorate", |
1337 "--print-status-updates", | 1293 "--print-status-updates", |
1338 "--shards", | 1294 "--shards", |
1339 "1", | 1295 "1", |
1340 "ct-nanobench-3/Ubuntu-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_6
4-Release-CT_BENCH_10k_SKPs/-1", | 1296 "ct-nanobench-3/Ubuntu-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_6
4-Release-CT_BENCH_10k_SKPs/-1", |
1341 "--task-summary-json", | 1297 "--task-summary-json", |
1342 "/path/to/tmp/json", | 1298 "/path/to/tmp/json", |
1343 "--task-output-dir", | 1299 "--task-output-dir", |
1344 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-3" | 1300 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-3" |
1345 ], | 1301 ], |
1346 "cwd": "[SLAVE_BUILD]", | |
1347 "name": "ct-nanobench-3 on Ubuntu-14.04", | 1302 "name": "ct-nanobench-3 on Ubuntu-14.04", |
1348 "~followup_annotations": [ | 1303 "~followup_annotations": [ |
1349 "@@@STEP_TEXT@swarming pending 71s@@@", | 1304 "@@@STEP_TEXT@swarming pending 71s@@@", |
1350 "@@@STEP_LOG_LINE@json.output@{@@@", | 1305 "@@@STEP_LOG_LINE@json.output@{@@@", |
1351 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@", | 1306 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@", |
1352 "@@@STEP_LOG_LINE@json.output@ {@@@", | 1307 "@@@STEP_LOG_LINE@json.output@ {@@@", |
1353 "@@@STEP_LOG_LINE@json.output@ \"abandoned_ts\": null, @@@", | 1308 "@@@STEP_LOG_LINE@json.output@ \"abandoned_ts\": null, @@@", |
1354 "@@@STEP_LOG_LINE@json.output@ \"bot_id\": \"vm30\", @@@", | 1309 "@@@STEP_LOG_LINE@json.output@ \"bot_id\": \"vm30\", @@@", |
1355 "@@@STEP_LOG_LINE@json.output@ \"completed_ts\": \"2014-09-25T01:42:0
0.123\", @@@", | 1310 "@@@STEP_LOG_LINE@json.output@ \"completed_ts\": \"2014-09-25T01:42:0
0.123\", @@@", |
1356 "@@@STEP_LOG_LINE@json.output@ \"created_ts\": \"2014-09-25T01:41:00.
123\", @@@", | 1311 "@@@STEP_LOG_LINE@json.output@ \"created_ts\": \"2014-09-25T01:41:00.
123\", @@@", |
(...skipping 29 matching lines...) Expand all Loading... |
1386 "@@@STEP_LOG_LINE@json.output@}@@@", | 1341 "@@@STEP_LOG_LINE@json.output@}@@@", |
1387 "@@@STEP_LOG_END@json.output@@@", | 1342 "@@@STEP_LOG_END@json.output@@@", |
1388 "@@@STEP_LINK@shard #0 isolated out@blah@@@" | 1343 "@@@STEP_LINK@shard #0 isolated out@blah@@@" |
1389 ] | 1344 ] |
1390 }, | 1345 }, |
1391 { | 1346 { |
1392 "cmd": [ | 1347 "cmd": [ |
1393 "python", | 1348 "python", |
1394 "-u", | 1349 "-u", |
1395 "\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(
sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys
.argv[1]), f)\n", | 1350 "\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(
sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys
.argv[1]), f)\n", |
1396 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-3/0", | 1351 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-3/0", |
1397 "/path/to/tmp/json" | 1352 "/path/to/tmp/json" |
1398 ], | 1353 ], |
1399 "cwd": "[SLAVE_BUILD]", | |
1400 "name": "listdir output dir (3)", | 1354 "name": "listdir output dir (3)", |
1401 "~followup_annotations": [ | 1355 "~followup_annotations": [ |
1402 "@@@STEP_LOG_LINE@json.output@[@@@", | 1356 "@@@STEP_LOG_LINE@json.output@[@@@", |
1403 "@@@STEP_LOG_LINE@json.output@ \"file 1\", @@@", | 1357 "@@@STEP_LOG_LINE@json.output@ \"file 1\", @@@", |
1404 "@@@STEP_LOG_LINE@json.output@ \"file 2\"@@@", | 1358 "@@@STEP_LOG_LINE@json.output@ \"file 2\"@@@", |
1405 "@@@STEP_LOG_LINE@json.output@]@@@", | 1359 "@@@STEP_LOG_LINE@json.output@]@@@", |
1406 "@@@STEP_LOG_END@json.output@@@", | 1360 "@@@STEP_LOG_END@json.output@@@", |
1407 "@@@STEP_LOG_LINE@python.inline@@@@", | 1361 "@@@STEP_LOG_LINE@python.inline@@@@", |
1408 "@@@STEP_LOG_LINE@python.inline@import json, os, sys@@@", | 1362 "@@@STEP_LOG_LINE@python.inline@import json, os, sys@@@", |
1409 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]) and os.path
.isdir(sys.argv[1]):@@@", | 1363 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]) and os.path
.isdir(sys.argv[1]):@@@", |
1410 "@@@STEP_LOG_LINE@python.inline@ with open(sys.argv[2], 'w') as f:@@@", | 1364 "@@@STEP_LOG_LINE@python.inline@ with open(sys.argv[2], 'w') as f:@@@", |
1411 "@@@STEP_LOG_LINE@python.inline@ json.dump(os.listdir(sys.argv[1]), f)@
@@", | 1365 "@@@STEP_LOG_LINE@python.inline@ json.dump(os.listdir(sys.argv[1]), f)@
@@", |
1412 "@@@STEP_LOG_END@python.inline@@@" | 1366 "@@@STEP_LOG_END@python.inline@@@" |
1413 ] | 1367 ] |
1414 }, | 1368 }, |
1415 { | 1369 { |
1416 "cmd": [ | 1370 "cmd": [ |
1417 "python", | 1371 "python", |
1418 "-u", | 1372 "-u", |
1419 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 1373 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
1420 "--", | 1374 "--", |
1421 "[DEPOT_TOOLS]/gsutil.py", | 1375 "[ROOT]/b/depot_tools/gsutil.py", |
1422 "----", | 1376 "----", |
1423 "cp", | 1377 "cp", |
1424 "-R", | 1378 "-R", |
1425 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-3/0/file 1", | 1379 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-3/0/file 1", |
1426 "gs://skia-perf/ct/10k/2012/05/14/12/" | 1380 "gs://skia-perf/ct/10k/2012/05/14/12/" |
1427 ], | 1381 ], |
1428 "cwd": "[SLAVE_BUILD]", | |
1429 "env": { | 1382 "env": { |
1430 "AWS_CREDENTIAL_FILE": null, | 1383 "AWS_CREDENTIAL_FILE": null, |
1431 "BOTO_CONFIG": null | 1384 "BOTO_CONFIG": null |
1432 }, | 1385 }, |
1433 "name": "gsutil upload json output (5)", | 1386 "name": "gsutil upload json output (5)", |
1434 "~followup_annotations": [ | 1387 "~followup_annotations": [ |
1435 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" | 1388 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" |
1436 ] | 1389 ] |
1437 }, | 1390 }, |
1438 { | 1391 { |
1439 "cmd": [ | 1392 "cmd": [ |
1440 "python", | 1393 "python", |
1441 "-u", | 1394 "-u", |
1442 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 1395 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
1443 "--", | 1396 "--", |
1444 "[DEPOT_TOOLS]/gsutil.py", | 1397 "[ROOT]/b/depot_tools/gsutil.py", |
1445 "----", | 1398 "----", |
1446 "cp", | 1399 "cp", |
1447 "-R", | 1400 "-R", |
1448 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-3/0/file 2", | 1401 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-3/0/file 2", |
1449 "gs://skia-perf/ct/10k/2012/05/14/12/" | 1402 "gs://skia-perf/ct/10k/2012/05/14/12/" |
1450 ], | 1403 ], |
1451 "cwd": "[SLAVE_BUILD]", | |
1452 "env": { | 1404 "env": { |
1453 "AWS_CREDENTIAL_FILE": null, | 1405 "AWS_CREDENTIAL_FILE": null, |
1454 "BOTO_CONFIG": null | 1406 "BOTO_CONFIG": null |
1455 }, | 1407 }, |
1456 "name": "gsutil upload json output (6)", | 1408 "name": "gsutil upload json output (6)", |
1457 "~followup_annotations": [ | 1409 "~followup_annotations": [ |
1458 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" | 1410 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" |
1459 ] | 1411 ] |
1460 }, | 1412 }, |
1461 { | 1413 { |
1462 "cmd": [ | 1414 "cmd": [ |
1463 "python", | 1415 "python", |
1464 "-u", | 1416 "-u", |
1465 "[SLAVE_BUILD]/swarming.client/swarming.py", | 1417 "[CWD]/swarming.client/swarming.py", |
1466 "collect", | 1418 "collect", |
1467 "--swarming", | 1419 "--swarming", |
1468 "https://chromium-swarm.appspot.com", | 1420 "https://chromium-swarm.appspot.com", |
1469 "--decorate", | 1421 "--decorate", |
1470 "--print-status-updates", | 1422 "--print-status-updates", |
1471 "--shards", | 1423 "--shards", |
1472 "1", | 1424 "1", |
1473 "ct-nanobench-4/Ubuntu-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_6
4-Release-CT_BENCH_10k_SKPs/-1", | 1425 "ct-nanobench-4/Ubuntu-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_6
4-Release-CT_BENCH_10k_SKPs/-1", |
1474 "--task-summary-json", | 1426 "--task-summary-json", |
1475 "/path/to/tmp/json", | 1427 "/path/to/tmp/json", |
1476 "--task-output-dir", | 1428 "--task-output-dir", |
1477 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-4" | 1429 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-4" |
1478 ], | 1430 ], |
1479 "cwd": "[SLAVE_BUILD]", | |
1480 "name": "ct-nanobench-4 on Ubuntu-14.04", | 1431 "name": "ct-nanobench-4 on Ubuntu-14.04", |
1481 "~followup_annotations": [ | 1432 "~followup_annotations": [ |
1482 "@@@STEP_TEXT@swarming pending 71s@@@", | 1433 "@@@STEP_TEXT@swarming pending 71s@@@", |
1483 "@@@STEP_LOG_LINE@json.output@{@@@", | 1434 "@@@STEP_LOG_LINE@json.output@{@@@", |
1484 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@", | 1435 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@", |
1485 "@@@STEP_LOG_LINE@json.output@ {@@@", | 1436 "@@@STEP_LOG_LINE@json.output@ {@@@", |
1486 "@@@STEP_LOG_LINE@json.output@ \"abandoned_ts\": null, @@@", | 1437 "@@@STEP_LOG_LINE@json.output@ \"abandoned_ts\": null, @@@", |
1487 "@@@STEP_LOG_LINE@json.output@ \"bot_id\": \"vm30\", @@@", | 1438 "@@@STEP_LOG_LINE@json.output@ \"bot_id\": \"vm30\", @@@", |
1488 "@@@STEP_LOG_LINE@json.output@ \"completed_ts\": \"2014-09-25T01:42:0
0.123\", @@@", | 1439 "@@@STEP_LOG_LINE@json.output@ \"completed_ts\": \"2014-09-25T01:42:0
0.123\", @@@", |
1489 "@@@STEP_LOG_LINE@json.output@ \"created_ts\": \"2014-09-25T01:41:00.
123\", @@@", | 1440 "@@@STEP_LOG_LINE@json.output@ \"created_ts\": \"2014-09-25T01:41:00.
123\", @@@", |
(...skipping 29 matching lines...) Expand all Loading... |
1519 "@@@STEP_LOG_LINE@json.output@}@@@", | 1470 "@@@STEP_LOG_LINE@json.output@}@@@", |
1520 "@@@STEP_LOG_END@json.output@@@", | 1471 "@@@STEP_LOG_END@json.output@@@", |
1521 "@@@STEP_LINK@shard #0 isolated out@blah@@@" | 1472 "@@@STEP_LINK@shard #0 isolated out@blah@@@" |
1522 ] | 1473 ] |
1523 }, | 1474 }, |
1524 { | 1475 { |
1525 "cmd": [ | 1476 "cmd": [ |
1526 "python", | 1477 "python", |
1527 "-u", | 1478 "-u", |
1528 "\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(
sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys
.argv[1]), f)\n", | 1479 "\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(
sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys
.argv[1]), f)\n", |
1529 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-4/0", | 1480 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-4/0", |
1530 "/path/to/tmp/json" | 1481 "/path/to/tmp/json" |
1531 ], | 1482 ], |
1532 "cwd": "[SLAVE_BUILD]", | |
1533 "name": "listdir output dir (4)", | 1483 "name": "listdir output dir (4)", |
1534 "~followup_annotations": [ | 1484 "~followup_annotations": [ |
1535 "@@@STEP_LOG_LINE@json.output@[@@@", | 1485 "@@@STEP_LOG_LINE@json.output@[@@@", |
1536 "@@@STEP_LOG_LINE@json.output@ \"file 1\", @@@", | 1486 "@@@STEP_LOG_LINE@json.output@ \"file 1\", @@@", |
1537 "@@@STEP_LOG_LINE@json.output@ \"file 2\"@@@", | 1487 "@@@STEP_LOG_LINE@json.output@ \"file 2\"@@@", |
1538 "@@@STEP_LOG_LINE@json.output@]@@@", | 1488 "@@@STEP_LOG_LINE@json.output@]@@@", |
1539 "@@@STEP_LOG_END@json.output@@@", | 1489 "@@@STEP_LOG_END@json.output@@@", |
1540 "@@@STEP_LOG_LINE@python.inline@@@@", | 1490 "@@@STEP_LOG_LINE@python.inline@@@@", |
1541 "@@@STEP_LOG_LINE@python.inline@import json, os, sys@@@", | 1491 "@@@STEP_LOG_LINE@python.inline@import json, os, sys@@@", |
1542 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]) and os.path
.isdir(sys.argv[1]):@@@", | 1492 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]) and os.path
.isdir(sys.argv[1]):@@@", |
1543 "@@@STEP_LOG_LINE@python.inline@ with open(sys.argv[2], 'w') as f:@@@", | 1493 "@@@STEP_LOG_LINE@python.inline@ with open(sys.argv[2], 'w') as f:@@@", |
1544 "@@@STEP_LOG_LINE@python.inline@ json.dump(os.listdir(sys.argv[1]), f)@
@@", | 1494 "@@@STEP_LOG_LINE@python.inline@ json.dump(os.listdir(sys.argv[1]), f)@
@@", |
1545 "@@@STEP_LOG_END@python.inline@@@" | 1495 "@@@STEP_LOG_END@python.inline@@@" |
1546 ] | 1496 ] |
1547 }, | 1497 }, |
1548 { | 1498 { |
1549 "cmd": [ | 1499 "cmd": [ |
1550 "python", | 1500 "python", |
1551 "-u", | 1501 "-u", |
1552 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 1502 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
1553 "--", | 1503 "--", |
1554 "[DEPOT_TOOLS]/gsutil.py", | 1504 "[ROOT]/b/depot_tools/gsutil.py", |
1555 "----", | 1505 "----", |
1556 "cp", | 1506 "cp", |
1557 "-R", | 1507 "-R", |
1558 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-4/0/file 1", | 1508 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-4/0/file 1", |
1559 "gs://skia-perf/ct/10k/2012/05/14/12/" | 1509 "gs://skia-perf/ct/10k/2012/05/14/12/" |
1560 ], | 1510 ], |
1561 "cwd": "[SLAVE_BUILD]", | |
1562 "env": { | 1511 "env": { |
1563 "AWS_CREDENTIAL_FILE": null, | 1512 "AWS_CREDENTIAL_FILE": null, |
1564 "BOTO_CONFIG": null | 1513 "BOTO_CONFIG": null |
1565 }, | 1514 }, |
1566 "name": "gsutil upload json output (7)", | 1515 "name": "gsutil upload json output (7)", |
1567 "~followup_annotations": [ | 1516 "~followup_annotations": [ |
1568 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" | 1517 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" |
1569 ] | 1518 ] |
1570 }, | 1519 }, |
1571 { | 1520 { |
1572 "cmd": [ | 1521 "cmd": [ |
1573 "python", | 1522 "python", |
1574 "-u", | 1523 "-u", |
1575 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 1524 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
1576 "--", | 1525 "--", |
1577 "[DEPOT_TOOLS]/gsutil.py", | 1526 "[ROOT]/b/depot_tools/gsutil.py", |
1578 "----", | 1527 "----", |
1579 "cp", | 1528 "cp", |
1580 "-R", | 1529 "-R", |
1581 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-4/0/file 2", | 1530 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-4/0/file 2", |
1582 "gs://skia-perf/ct/10k/2012/05/14/12/" | 1531 "gs://skia-perf/ct/10k/2012/05/14/12/" |
1583 ], | 1532 ], |
1584 "cwd": "[SLAVE_BUILD]", | |
1585 "env": { | 1533 "env": { |
1586 "AWS_CREDENTIAL_FILE": null, | 1534 "AWS_CREDENTIAL_FILE": null, |
1587 "BOTO_CONFIG": null | 1535 "BOTO_CONFIG": null |
1588 }, | 1536 }, |
1589 "name": "gsutil upload json output (8)", | 1537 "name": "gsutil upload json output (8)", |
1590 "~followup_annotations": [ | 1538 "~followup_annotations": [ |
1591 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" | 1539 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" |
1592 ] | 1540 ] |
1593 }, | 1541 }, |
1594 { | 1542 { |
1595 "cmd": [ | 1543 "cmd": [ |
1596 "python", | 1544 "python", |
1597 "-u", | 1545 "-u", |
1598 "[SLAVE_BUILD]/swarming.client/swarming.py", | 1546 "[CWD]/swarming.client/swarming.py", |
1599 "collect", | 1547 "collect", |
1600 "--swarming", | 1548 "--swarming", |
1601 "https://chromium-swarm.appspot.com", | 1549 "https://chromium-swarm.appspot.com", |
1602 "--decorate", | 1550 "--decorate", |
1603 "--print-status-updates", | 1551 "--print-status-updates", |
1604 "--shards", | 1552 "--shards", |
1605 "1", | 1553 "1", |
1606 "ct-nanobench-5/Ubuntu-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_6
4-Release-CT_BENCH_10k_SKPs/-1", | 1554 "ct-nanobench-5/Ubuntu-14.04/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_6
4-Release-CT_BENCH_10k_SKPs/-1", |
1607 "--task-summary-json", | 1555 "--task-summary-json", |
1608 "/path/to/tmp/json", | 1556 "/path/to/tmp/json", |
1609 "--task-output-dir", | 1557 "--task-output-dir", |
1610 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-5" | 1558 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-5" |
1611 ], | 1559 ], |
1612 "cwd": "[SLAVE_BUILD]", | |
1613 "name": "ct-nanobench-5 on Ubuntu-14.04", | 1560 "name": "ct-nanobench-5 on Ubuntu-14.04", |
1614 "~followup_annotations": [ | 1561 "~followup_annotations": [ |
1615 "@@@STEP_TEXT@swarming pending 71s@@@", | 1562 "@@@STEP_TEXT@swarming pending 71s@@@", |
1616 "@@@STEP_LOG_LINE@json.output@{@@@", | 1563 "@@@STEP_LOG_LINE@json.output@{@@@", |
1617 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@", | 1564 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@", |
1618 "@@@STEP_LOG_LINE@json.output@ {@@@", | 1565 "@@@STEP_LOG_LINE@json.output@ {@@@", |
1619 "@@@STEP_LOG_LINE@json.output@ \"abandoned_ts\": null, @@@", | 1566 "@@@STEP_LOG_LINE@json.output@ \"abandoned_ts\": null, @@@", |
1620 "@@@STEP_LOG_LINE@json.output@ \"bot_id\": \"vm30\", @@@", | 1567 "@@@STEP_LOG_LINE@json.output@ \"bot_id\": \"vm30\", @@@", |
1621 "@@@STEP_LOG_LINE@json.output@ \"completed_ts\": \"2014-09-25T01:42:0
0.123\", @@@", | 1568 "@@@STEP_LOG_LINE@json.output@ \"completed_ts\": \"2014-09-25T01:42:0
0.123\", @@@", |
1622 "@@@STEP_LOG_LINE@json.output@ \"created_ts\": \"2014-09-25T01:41:00.
123\", @@@", | 1569 "@@@STEP_LOG_LINE@json.output@ \"created_ts\": \"2014-09-25T01:41:00.
123\", @@@", |
(...skipping 29 matching lines...) Expand all Loading... |
1652 "@@@STEP_LOG_LINE@json.output@}@@@", | 1599 "@@@STEP_LOG_LINE@json.output@}@@@", |
1653 "@@@STEP_LOG_END@json.output@@@", | 1600 "@@@STEP_LOG_END@json.output@@@", |
1654 "@@@STEP_LINK@shard #0 isolated out@blah@@@" | 1601 "@@@STEP_LINK@shard #0 isolated out@blah@@@" |
1655 ] | 1602 ] |
1656 }, | 1603 }, |
1657 { | 1604 { |
1658 "cmd": [ | 1605 "cmd": [ |
1659 "python", | 1606 "python", |
1660 "-u", | 1607 "-u", |
1661 "\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(
sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys
.argv[1]), f)\n", | 1608 "\nimport json, os, sys\nif os.path.exists(sys.argv[1]) and os.path.isdir(
sys.argv[1]):\n with open(sys.argv[2], 'w') as f:\n json.dump(os.listdir(sys
.argv[1]), f)\n", |
1662 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-5/0", | 1609 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-5/0", |
1663 "/path/to/tmp/json" | 1610 "/path/to/tmp/json" |
1664 ], | 1611 ], |
1665 "cwd": "[SLAVE_BUILD]", | |
1666 "name": "listdir output dir (5)", | 1612 "name": "listdir output dir (5)", |
1667 "~followup_annotations": [ | 1613 "~followup_annotations": [ |
1668 "@@@STEP_LOG_LINE@json.output@[@@@", | 1614 "@@@STEP_LOG_LINE@json.output@[@@@", |
1669 "@@@STEP_LOG_LINE@json.output@ \"file 1\", @@@", | 1615 "@@@STEP_LOG_LINE@json.output@ \"file 1\", @@@", |
1670 "@@@STEP_LOG_LINE@json.output@ \"file 2\"@@@", | 1616 "@@@STEP_LOG_LINE@json.output@ \"file 2\"@@@", |
1671 "@@@STEP_LOG_LINE@json.output@]@@@", | 1617 "@@@STEP_LOG_LINE@json.output@]@@@", |
1672 "@@@STEP_LOG_END@json.output@@@", | 1618 "@@@STEP_LOG_END@json.output@@@", |
1673 "@@@STEP_LOG_LINE@python.inline@@@@", | 1619 "@@@STEP_LOG_LINE@python.inline@@@@", |
1674 "@@@STEP_LOG_LINE@python.inline@import json, os, sys@@@", | 1620 "@@@STEP_LOG_LINE@python.inline@import json, os, sys@@@", |
1675 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]) and os.path
.isdir(sys.argv[1]):@@@", | 1621 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]) and os.path
.isdir(sys.argv[1]):@@@", |
1676 "@@@STEP_LOG_LINE@python.inline@ with open(sys.argv[2], 'w') as f:@@@", | 1622 "@@@STEP_LOG_LINE@python.inline@ with open(sys.argv[2], 'w') as f:@@@", |
1677 "@@@STEP_LOG_LINE@python.inline@ json.dump(os.listdir(sys.argv[1]), f)@
@@", | 1623 "@@@STEP_LOG_LINE@python.inline@ json.dump(os.listdir(sys.argv[1]), f)@
@@", |
1678 "@@@STEP_LOG_END@python.inline@@@" | 1624 "@@@STEP_LOG_END@python.inline@@@" |
1679 ] | 1625 ] |
1680 }, | 1626 }, |
1681 { | 1627 { |
1682 "cmd": [ | 1628 "cmd": [ |
1683 "python", | 1629 "python", |
1684 "-u", | 1630 "-u", |
1685 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 1631 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
1686 "--", | 1632 "--", |
1687 "[DEPOT_TOOLS]/gsutil.py", | 1633 "[ROOT]/b/depot_tools/gsutil.py", |
1688 "----", | 1634 "----", |
1689 "cp", | 1635 "cp", |
1690 "-R", | 1636 "-R", |
1691 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-5/0/file 1", | 1637 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-5/0/file 1", |
1692 "gs://skia-perf/ct/10k/2012/05/14/12/" | 1638 "gs://skia-perf/ct/10k/2012/05/14/12/" |
1693 ], | 1639 ], |
1694 "cwd": "[SLAVE_BUILD]", | |
1695 "env": { | 1640 "env": { |
1696 "AWS_CREDENTIAL_FILE": null, | 1641 "AWS_CREDENTIAL_FILE": null, |
1697 "BOTO_CONFIG": null | 1642 "BOTO_CONFIG": null |
1698 }, | 1643 }, |
1699 "name": "gsutil upload json output (9)", | 1644 "name": "gsutil upload json output (9)", |
1700 "~followup_annotations": [ | 1645 "~followup_annotations": [ |
1701 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" | 1646 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" |
1702 ] | 1647 ] |
1703 }, | 1648 }, |
1704 { | 1649 { |
1705 "cmd": [ | 1650 "cmd": [ |
1706 "python", | 1651 "python", |
1707 "-u", | 1652 "-u", |
1708 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 1653 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
1709 "--", | 1654 "--", |
1710 "[DEPOT_TOOLS]/gsutil.py", | 1655 "[ROOT]/b/depot_tools/gsutil.py", |
1711 "----", | 1656 "----", |
1712 "cp", | 1657 "cp", |
1713 "-R", | 1658 "-R", |
1714 "[SLAVE_BUILD]/swarming_temp_dir/outputs/ct-nanobench-5/0/file 2", | 1659 "[CWD]/swarming_temp_dir/outputs/ct-nanobench-5/0/file 2", |
1715 "gs://skia-perf/ct/10k/2012/05/14/12/" | 1660 "gs://skia-perf/ct/10k/2012/05/14/12/" |
1716 ], | 1661 ], |
1717 "cwd": "[SLAVE_BUILD]", | |
1718 "env": { | 1662 "env": { |
1719 "AWS_CREDENTIAL_FILE": null, | 1663 "AWS_CREDENTIAL_FILE": null, |
1720 "BOTO_CONFIG": null | 1664 "BOTO_CONFIG": null |
1721 }, | 1665 }, |
1722 "name": "gsutil upload json output (10)", | 1666 "name": "gsutil upload json output (10)", |
1723 "~followup_annotations": [ | 1667 "~followup_annotations": [ |
1724 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" | 1668 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/skia-perf/ct/
10k/2012/05/14/12/@@@" |
1725 ] | 1669 ] |
1726 }, | 1670 }, |
1727 { | 1671 { |
1728 "name": "$result", | 1672 "name": "$result", |
1729 "recipe_result": null, | 1673 "recipe_result": null, |
1730 "status_code": 0 | 1674 "status_code": 0 |
1731 } | 1675 } |
1732 ] | 1676 ] |
OLD | NEW |