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

Side by Side Diff: scripts/slave/recipes/skia/skia.expected/Test-ChromeOS-GCC-Link-CPU-AVX-x86_64-Debug.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 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@", 417 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@",
418 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", 418 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
419 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", 419 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@",
420 "@@@STEP_LOG_END@python.inline@@@" 420 "@@@STEP_LOG_END@python.inline@@@"
421 ] 421 ]
422 }, 422 },
423 { 423 {
424 "cmd": [ 424 "cmd": [
425 "python", 425 "python",
426 "-u", 426 "-u",
427 "[SLAVE_BUILD]/skia/tools/get_uploaded_hashes.py", 427 "\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",
428 "chromium-skia-gm",
429 "dm-images-v1",
430 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt" 428 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
431 ], 429 ],
432 "cwd": "[SLAVE_BUILD]/skia", 430 "cwd": "[SLAVE_BUILD]/skia",
433 "name": "get uninteresting hashes" 431 "name": "get uninteresting hashes",
432 "~followup_annotations": [
433 "@@@STEP_LOG_LINE@python.inline@@@@",
434 "@@@STEP_LOG_LINE@python.inline@import contextlib@@@",
435 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
436 "@@@STEP_LOG_LINE@python.inline@import urllib2@@@",
437 "@@@STEP_LOG_LINE@python.inline@@@@",
438 "@@@STEP_LOG_LINE@python.inline@HASHES_URL = 'https://gold.skia.org/2/_/ha shes'@@@",
439 "@@@STEP_LOG_LINE@python.inline@@@@",
440 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@",
441 "@@@STEP_LOG_LINE@python.inline@ with contextlib.closing(urllib2.urlopen( HASHES_URL)) as w:@@@",
442 "@@@STEP_LOG_LINE@python.inline@ f.write(w.read())@@@",
443 "@@@STEP_LOG_END@python.inline@@@"
444 ]
434 }, 445 },
435 { 446 {
436 "cmd": [ 447 "cmd": [
437 "scp", 448 "scp",
438 "-P", 449 "-P",
439 "22", 450 "22",
440 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt", 451 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
441 "root@192.168.1.123:/usr/local/skiabot/skia_tmp_dir/uninteresting_hashes.t xt" 452 "root@192.168.1.123:/usr/local/skiabot/skia_tmp_dir/uninteresting_hashes.t xt"
442 ], 453 ],
443 "name": "scp uninteresting_hashes.txt" 454 "name": "scp uninteresting_hashes.txt"
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
573 "-i", 584 "-i",
574 "/usr/local/skiabot/skia_resources", 585 "/usr/local/skiabot/skia_resources",
575 "--skps", 586 "--skps",
576 "/usr/local/skiabot/skia_skp/skps", 587 "/usr/local/skiabot/skia_skp/skps",
577 "--nogpu", 588 "--nogpu",
578 "--dummy-flags" 589 "--dummy-flags"
579 ], 590 ],
580 "name": "nanobench" 591 "name": "nanobench"
581 } 592 }
582 ] 593 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698