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