1 [ 2 { 3 "cmd": [ 4 "python", 5 "-u", 6 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", 7 "--json-output", 8 "/path/to/tmp/json", 9 "copy", 10 "[START_DIR]/skia/infra/bots/assets/skp/VERSION", 11 "/path/to/tmp/" 12 ], 13 "infra_step": true, 14 "name": "Get downloaded SKP VERSION" 15 }, 16 { 17 "cmd": [ 18 "python", 19 "-u", 20 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", 21 "--json-output", 22 "/path/to/tmp/json", 23 "copy", 24 "42", 25 "[START_DIR]/tmp/SKP_VERSION" 26 ], 27 "infra_step": true, 28 "name": "write SKP_VERSION" 29 }, 30 { 31 "cmd": [ 32 "python", 33 "-u", 34 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", 35 "--json-output", 36 "/path/to/tmp/json", 37 "copy", 38 "[START_DIR]/skia/infra/bots/assets/skimage/VERSION", 39 "/path/to/tmp/" 40 ], 41 "infra_step": true, 42 "name": "Get downloaded skimage VERSION" 43 }, 44 { 45 "cmd": [ 46 "python", 47 "-u", 48 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", 49 "--json-output", 50 "/path/to/tmp/json", 51 "copy", 52 "42", 53 "[START_DIR]/tmp/SK_IMAGE_VERSION" 54 ], 55 "infra_step": true, 56 "name": "write SK_IMAGE_VERSION" 57 }, 58 { 59 "cmd": [ 60 "python", 61 "-u", 62 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", 63 "--json-output", 64 "/path/to/tmp/json", 65 "copy", 66 "[START_DIR]/skia/infra/bots/assets/svg/VERSION", 67 "/path/to/tmp/" 68 ], 69 "infra_step": true, 70 "name": "Get downloaded SVG VERSION" 71 }, 72 { 73 "cmd": [ 74 "python", 75 "-u", 76 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", 77 "--json-output", 78 "/path/to/tmp/json", 79 "copy", 80 "42", 81 "[START_DIR]/tmp/SVG_VERSION" 82 ], 83 "infra_step": true, 84 "name": "write SVG_VERSION" 85 }, 86 { 87 "cmd": [ 88 "python", 89 "-u", 90 "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py", 91 "--json-output", 92 "/path/to/tmp/json", 93 "ensure-directory", 94 "--mode", 95 "0777", 96 "[START_DIR]/tmp" 97 ], 98 "infra_step": true, 99 "name": "makedirs tmp_dir" 100 }, 101 { 102 "cmd": [ 103 "python", 104 "-u", 105 "\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://storage.googleapis.com/skia-infra-gm/hash_files/gold-prod-hashes.txt'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n try:\n with contextlib.closing(\n urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n hashes = w.read()\n with open(sys.argv[1], 'w') as f:\n f.write(hashes)\n break\n except Exception as e:\n print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n print e\n if retry == RETRIES:\n raise\n waittime = WAIT_BASE * math.pow(2, retry)\n print 'Retry in %d seconds.' % waittime\n time.sleep(waittime)\n", 106 "[START_DIR]/tmp/uninteresting_hashes.txt" 107 ], 108 "env": { 109 "BUILDTYPE": "Debug", 110 "CHROME_HEADLESS": "1", 111 "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", 112 "SKIA_OUT": "[START_DIR]/out" 113 }, 114 "infra_step": true, 115 "name": "get uninteresting hashes", 116 "~followup_annotations": [ 117 "@@@STEP_LOG_LINE (a] python.inline@@@@", 118 "@@@STEP_LOG_LINE (a] python.inline@import contextlib@@@", 119 "@@@STEP_LOG_LINE (a] python.inline@import math@@@", 120 "@@@STEP_LOG_LINE (a] python.inline@import socket@@@", 121 "@@@STEP_LOG_LINE (a] python.inline@import sys@@@", 122 "@@@STEP_LOG_LINE (a] python.inline@import time@@@", 123 "@@@STEP_LOG_LINE (a] python.inline@import urllib2@@@", 124 "@@@STEP_LOG_LINE (a] python.inline@@@@", 125 "@@@STEP_LOG_LINE (a] python.inline@HASHES_URL = 'https://storage.googleapis.com/skia-infra-gm/hash_files/gold-prod-hashes.txt'@@@", 126 "@@@STEP_LOG_LINE (a] python.inline@RETRIES = 5@@@", 127 "@@@STEP_LOG_LINE (a] python.inline@TIMEOUT = 60@@@", 128 "@@@STEP_LOG_LINE (a] python.inline@WAIT_BASE = 15@@@", 129 "@@@STEP_LOG_LINE (a] python.inline@@@@", 130 "@@@STEP_LOG_LINE (a] python.inline@socket.setdefaulttimeout(TIMEOUT)@@@", 131 "@@@STEP_LOG_LINE (a] python.inline@for retry in range(RETRIES):@@@", 132 "@@@STEP_LOG_LINE (a] python.inline@ try:@@@", 133 "@@@STEP_LOG_LINE (a] python.inline@ with contextlib.closing(@@@", 134 "@@@STEP_LOG_LINE (a] python.inline@ urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:@@@", 135 "@@@STEP_LOG_LINE (a] python.inline@ hashes = w.read()@@@", 136 "@@@STEP_LOG_LINE (a] python.inline@ with open(sys.argv[1], 'w') as f:@@@", 137 "@@@STEP_LOG_LINE (a] python.inline@ f.write(hashes)@@@", 138 "@@@STEP_LOG_LINE (a] python.inline@ break@@@", 139 "@@@STEP_LOG_LINE (a] python.inline@ except Exception as e:@@@", 140 "@@@STEP_LOG_LINE (a] python.inline@ print 'Failed to get uninteresting hashes from %s:' % HASHES_URL@@@", 141 "@@@STEP_LOG_LINE (a] python.inline@ print e@@@", 142 "@@@STEP_LOG_LINE (a] python.inline@ if retry == RETRIES:@@@", 143 "@@@STEP_LOG_LINE (a] python.inline@ raise@@@", 144 "@@@STEP_LOG_LINE (a] python.inline@ waittime = WAIT_BASE * math.pow(2, retry)@@@", 145 "@@@STEP_LOG_LINE (a] python.inline@ print 'Retry in %d seconds.' % waittime@@@", 146 "@@@STEP_LOG_LINE (a] python.inline@ time.sleep(waittime)@@@", 147 "@@@STEP_LOG_END (a] python.inline@@@" 148 ] 149 }, 150 { 151 "cmd": [ 152 "python", 153 "-u", 154 "import os\nprint os.environ.get('SWARMING_BOT_ID', '')\n" 155 ], 156 "name": "get swarming bot id", 157 "stdout": "/path/to/tmp/", 158 "~followup_annotations": [ 159 "@@@STEP_LOG_LINE (a] python.inline@import os@@@", 160 "@@@STEP_LOG_LINE (a] python.inline@print os.environ.get('SWARMING_BOT_ID', '')@@@", 161 "@@@STEP_LOG_END (a] python.inline@@@" 162 ] 163 }, 164 { 165 "cmd": [ 166 "python", 167 "-u", 168 "import os\nprint os.environ.get('SWARMING_TASK_ID', '')\n" 169 ], 170 "name": "get swarming task id", 171 "stdout": "/path/to/tmp/", 172 "~followup_annotations": [ 173 "@@@STEP_LOG_LINE (a] python.inline@import os@@@", 174 "@@@STEP_LOG_LINE (a] python.inline@print os.environ.get('SWARMING_TASK_ID', '')@@@", 175 "@@@STEP_LOG_END (a] python.inline@@@" 176 ] 177 }, 178 { 179 "cmd": [ 180 "python", 181 "-u", 182 "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py", 183 "[START_DIR]", 184 "catchsegv", 185 "[START_DIR]/out/Debug/dm", 186 "--resourcePath", 187 "[START_DIR]/skia/resources", 188 "--skps", 189 "[START_DIR]/skp", 190 "--images", 191 "[START_DIR]/skimage/dm", 192 "--colorImages", 193 "[START_DIR]/skimage/colorspace", 194 "--nameByHash", 195 "--properties", 196 "gitHash", 197 "abc123", 198 "builder", 199 "Test-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All", 200 "buildbucket_build_id", 201 "123454321", 202 "swarming_bot_id", 203 "skia-bot-123", 204 "swarming_task_id", 205 "123456", 206 "--svgs", 207 "[START_DIR]/svg", 208 "--key", 209 "arch", 210 "x86", 211 "compiler", 212 "GCC", 213 "configuration", 214 "Debug", 215 "cpu_or_gpu", 216 "CPU", 217 "cpu_or_gpu_value", 218 "AVX2", 219 "model", 220 "GCE", 221 "os", 222 "Debian9", 223 "--uninterestingHashesFile", 224 "[START_DIR]/tmp/uninteresting_hashes.txt", 225 "--writePath", 226 "[CUSTOM_[SWARM_OUT_DIR]]/dm", 227 "--dont_write", 228 "pdf", 229 "--randomProcessorTest", 230 "--threads", 231 "4", 232 "--nogpu", 233 "--config", 234 "8888", 235 "srgb", 236 "pdf", 237 "g8", 238 "565", 239 "f16", 240 "lite-8888", 241 "gbr-8888", 242 "serialize-8888", 243 "tiles_rt-8888", 244 "pic-8888", 245 "--src", 246 "tests", 247 "gm", 248 "image", 249 "colorImage", 250 "--blacklist", 251 "f16", 252 "_", 253 "_", 254 "dstreadshuffle", 255 "gbr-8888", 256 "image", 257 "_", 258 "_", 259 "gbr-8888", 260 "colorImage", 261 "_", 262 "_", 263 "g8", 264 "image", 265 "_", 266 "_", 267 "g8", 268 "colorImage", 269 "_", 270 "_", 271 "serialize-8888", 272 "gm", 273 "_", 274 "bleed_image", 275 "serialize-8888", 276 "gm", 277 "_", 278 "c_gms", 279 "serialize-8888", 280 "gm", 281 "_", 282 "colortype", 283 "serialize-8888", 284 "gm", 285 "_", 286 "colortype_xfermodes", 287 "serialize-8888", 288 "gm", 289 "_", 290 "drawfilter", 291 "serialize-8888", 292 "gm", 293 "_", 294 "fontmgr_bounds_0.75_0", 295 "serialize-8888", 296 "gm", 297 "_", 298 "fontmgr_bounds_1_-0.25", 299 "serialize-8888", 300 "gm", 301 "_", 302 "fontmgr_bounds", 303 "serialize-8888", 304 "gm", 305 "_", 306 "fontmgr_match", 307 "serialize-8888", 308 "gm", 309 "_", 310 "fontmgr_iter", 311 "serialize-8888", 312 "gm", 313 "_", 314 "imagemasksubset", 315 "serialize-8888", 316 "gm", 317 "_", 318 "bitmapfilters", 319 "serialize-8888", 320 "gm", 321 "_", 322 "bitmapshaders", 323 "serialize-8888", 324 "gm", 325 "_", 326 "bleed", 327 "serialize-8888", 328 "gm", 329 "_", 330 "bleed_alpha_bmp", 331 "serialize-8888", 332 "gm", 333 "_", 334 "bleed_alpha_bmp_shader", 335 "serialize-8888", 336 "gm", 337 "_", 338 "convex_poly_clip", 339 "serialize-8888", 340 "gm", 341 "_", 342 "extractalpha", 343 "serialize-8888", 344 "gm", 345 "_", 346 "filterbitmap_checkerboard_32_32_g8", 347 "serialize-8888", 348 "gm", 349 "_", 350 "filterbitmap_image_mandrill_64", 351 "serialize-8888", 352 "gm", 353 "_", 354 "shadows", 355 "serialize-8888", 356 "gm", 357 "_", 358 "simpleaaclip_aaclip", 359 "serialize-8888", 360 "gm", 361 "_", 362 "composeshader_bitmap", 363 "serialize-8888", 364 "gm", 365 "_", 366 "scaled_tilemodes_npot", 367 "serialize-8888", 368 "gm", 369 "_", 370 "scaled_tilemodes", 371 "serialize-8888", 372 "gm", 373 "_", 374 "typefacerendering_pfaMac", 375 "serialize-8888", 376 "gm", 377 "_", 378 "parsedpaths", 379 "serialize-8888", 380 "gm", 381 "_", 382 "ImageGeneratorExternal_rect", 383 "serialize-8888", 384 "gm", 385 "_", 386 "ImageGeneratorExternal_shader", 387 "serialize-8888", 388 "gm", 389 "_", 390 "shadow_utils", 391 "serialize-8888", 392 "gm", 393 "_", 394 "all_bitmap_configs", 395 "serialize-8888", 396 "gm", 397 "_", 398 "makecolorspace", 399 "serialize-8888", 400 "gm", 401 "_", 402 "analytic_antialias_convex", 403 "serialize-8888", 404 "gm", 405 "_", 406 "bleed_alpha_image", 407 "serialize-8888", 408 "gm", 409 "_", 410 "bleed_alpha_image_shader", 411 "pic-8888", 412 "gm", 413 "_", 414 "drawfilter", 415 "lite-8888", 416 "gm", 417 "_", 418 "drawfilter", 419 "pic-8888", 420 "gm", 421 "_", 422 "image-cacherator-from-picture", 423 "serialize-8888", 424 "gm", 425 "_", 426 "image-cacherator-from-picture", 427 "pic-8888", 428 "gm", 429 "_", 430 "image-cacherator-from-raster", 431 "serialize-8888", 432 "gm", 433 "_", 434 "image-cacherator-from-raster", 435 "pic-8888", 436 "gm", 437 "_", 438 "image-cacherator-from-ctable", 439 "serialize-8888", 440 "gm", 441 "_", 442 "image-cacherator-from-ctable", 443 "pic-8888", 444 "gm", 445 "_", 446 "gamut", 447 "lite-8888", 448 "gm", 449 "_", 450 "gamut", 451 "serialize-8888", 452 "gm", 453 "_", 454 "gamut", 455 "pic-8888", 456 "gm", 457 "_", 458 "complexclip4_bw", 459 "lite-8888", 460 "gm", 461 "_", 462 "complexclip4_bw", 463 "serialize-8888", 464 "gm", 465 "_", 466 "complexclip4_bw", 467 "pic-8888", 468 "gm", 469 "_", 470 "complexclip4_aa", 471 "lite-8888", 472 "gm", 473 "_", 474 "complexclip4_aa", 475 "serialize-8888", 476 "gm", 477 "_", 478 "complexclip4_aa", 479 "tiles_rt-8888", 480 "gm", 481 "_", 482 "complexclip4_bw", 483 "tiles_rt-8888", 484 "gm", 485 "_", 486 "complexclip4_aa", 487 "--nonativeFonts", 488 "--verbose" 489 ], 490 "cwd": "[START_DIR]/skia", 491 "env": { 492 "BUILDTYPE": "Debug", 493 "CHROME_HEADLESS": "1", 494 "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]", 495 "SKIA_OUT": "[START_DIR]/out" 496 }, 497 "name": "symbolized dm" 498 }, 499 { 500 "name": "$result", 501 "recipe_result": null, 502 "status_code": 0 503 } 504 ]