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

Side by Side Diff: scripts/slave/recipes/skia/skia.expected/Test-Android-GCC-Nexus5-GPU-Adreno330-Arm7-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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@", 552 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@",
553 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", 553 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
554 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", 554 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@",
555 "@@@STEP_LOG_END@python.inline@@@" 555 "@@@STEP_LOG_END@python.inline@@@"
556 ] 556 ]
557 }, 557 },
558 { 558 {
559 "cmd": [ 559 "cmd": [
560 "python", 560 "python",
561 "-u", 561 "-u",
562 "[SLAVE_BUILD]/skia/tools/get_uploaded_hashes.py", 562 "\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",
563 "chromium-skia-gm",
564 "dm-images-v1",
565 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt" 563 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
566 ], 564 ],
567 "cwd": "[SLAVE_BUILD]/skia", 565 "cwd": "[SLAVE_BUILD]/skia",
568 "name": "get uninteresting hashes" 566 "name": "get uninteresting hashes",
567 "~followup_annotations": [
568 "@@@STEP_LOG_LINE@python.inline@@@@",
569 "@@@STEP_LOG_LINE@python.inline@import contextlib@@@",
570 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
571 "@@@STEP_LOG_LINE@python.inline@import urllib2@@@",
572 "@@@STEP_LOG_LINE@python.inline@@@@",
573 "@@@STEP_LOG_LINE@python.inline@HASHES_URL = 'https://gold.skia.org/2/_/ha shes'@@@",
574 "@@@STEP_LOG_LINE@python.inline@@@@",
575 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@",
576 "@@@STEP_LOG_LINE@python.inline@ with contextlib.closing(urllib2.urlopen( HASHES_URL)) as w:@@@",
577 "@@@STEP_LOG_LINE@python.inline@ f.write(w.read())@@@",
578 "@@@STEP_LOG_END@python.inline@@@"
579 ]
569 }, 580 },
570 { 581 {
571 "cmd": [ 582 "cmd": [
572 "/home/chrome-bot/android-sdk-linux/platform-tools/adb", 583 "/home/chrome-bot/android-sdk-linux/platform-tools/adb",
573 "-s", 584 "-s",
574 "018dff3520c970f6", 585 "018dff3520c970f6",
575 "push", 586 "push",
576 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt", 587 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt",
577 "/storage/emulated/legacy/skiabot/skia_tmp_dir/uninteresting_hashes.txt" 588 "/storage/emulated/legacy/skiabot/skia_tmp_dir/uninteresting_hashes.txt"
578 ], 589 ],
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 { 743 {
733 "cmd": [ 744 "cmd": [
734 "/home/chrome-bot/android-sdk-linux/platform-tools/adb", 745 "/home/chrome-bot/android-sdk-linux/platform-tools/adb",
735 "-s", 746 "-s",
736 "018dff3520c970f6", 747 "018dff3520c970f6",
737 "wait-for-device" 748 "wait-for-device"
738 ], 749 ],
739 "name": "wait for device (3)" 750 "name": "wait for device (3)"
740 } 751 }
741 ] 752 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698