Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(718)

Side by Side Diff: scripts/slave/recipes/skia/skia.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot.json

Issue 1068503002: Skia: Replace get_uploaded_hashes call with inline script (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "git", 4 "git",
5 "fetch" 5 "fetch"
6 ], 6 ],
7 "cwd": "[SLAVE_BUILD]/skia", 7 "cwd": "[SLAVE_BUILD]/skia",
8 "name": "git fetch" 8 "name": "git fetch"
9 }, 9 },
10 { 10 {
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@", 342 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@",
343 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", 343 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
344 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", 344 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@",
345 "@@@STEP_LOG_END@python.inline@@@" 345 "@@@STEP_LOG_END@python.inline@@@"
346 ] 346 ]
347 }, 347 },
348 { 348 {
349 "cmd": [ 349 "cmd": [
350 "python", 350 "python",
351 "-u", 351 "-u",
352 "[SLAVE_BUILD]/skia/tools/get_uploaded_hashes.py", 352 "\nimport contextlib\nimport sys\nimport urllib2\n\nHASHES_URL = 'https:// gold.skia.org/2/_/hashes'\n\nwith open(sys.argv[1], 'w') as f:\n with contextli b.closing(urllib2.urlopen(HASHES_URL)) as w:\n f.write(w.read())\n",
353 "chromium-skia-gm",
354 "dm-images-v1",
355 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt" 353 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
356 ], 354 ],
357 "cwd": "[SLAVE_BUILD]/skia", 355 "cwd": "[SLAVE_BUILD]/skia",
358 "name": "get uninteresting hashes" 356 "name": "get uninteresting hashes",
357 "~followup_annotations": [
358 "@@@STEP_LOG_LINE@python.inline@@@@",
359 "@@@STEP_LOG_LINE@python.inline@import contextlib@@@",
360 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
361 "@@@STEP_LOG_LINE@python.inline@import urllib2@@@",
362 "@@@STEP_LOG_LINE@python.inline@@@@",
363 "@@@STEP_LOG_LINE@python.inline@HASHES_URL = 'https://gold.skia.org/2/_/ha shes'@@@",
364 "@@@STEP_LOG_LINE@python.inline@@@@",
365 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@",
366 "@@@STEP_LOG_LINE@python.inline@ with contextlib.closing(urllib2.urlopen( HASHES_URL)) as w:@@@",
367 "@@@STEP_LOG_LINE@python.inline@ f.write(w.read())@@@",
368 "@@@STEP_LOG_END@python.inline@@@"
369 ]
359 }, 370 },
360 { 371 {
361 "cmd": [ 372 "cmd": [
362 "python", 373 "python",
363 "-u", 374 "-u",
364 "[SLAVE_BUILD]/skia/tools/dm_flags.py", 375 "[SLAVE_BUILD]/skia/tools/dm_flags.py",
365 "/path/to/tmp/json", 376 "/path/to/tmp/json",
366 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot" 377 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot"
367 ], 378 ],
368 "cwd": "[SLAVE_BUILD]/skia", 379 "cwd": "[SLAVE_BUILD]/skia",
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 "-i", 465 "-i",
455 "[SLAVE_BUILD]/skia/resources", 466 "[SLAVE_BUILD]/skia/resources",
456 "--skps", 467 "--skps",
457 "[SLAVE_BUILD]/playback/skps", 468 "[SLAVE_BUILD]/playback/skps",
458 "--nogpu", 469 "--nogpu",
459 "--dummy-flags" 470 "--dummy-flags"
460 ], 471 ],
461 "name": "nanobench" 472 "name": "nanobench"
462 } 473 }
463 ] 474 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698