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

Side by Side Diff: scripts/slave/recipes/skia/skia.expected/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN.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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@", 295 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" % path@@@",
296 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", 296 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
297 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", 297 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@",
298 "@@@STEP_LOG_END@python.inline@@@" 298 "@@@STEP_LOG_END@python.inline@@@"
299 ] 299 ]
300 }, 300 },
301 { 301 {
302 "cmd": [ 302 "cmd": [
303 "python", 303 "python",
304 "-u", 304 "-u",
305 "[SLAVE_BUILD]/skia/tools/get_uploaded_hashes.py", 305 "\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",
306 "chromium-skia-gm",
307 "dm-images-v1",
308 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt" 306 "[SLAVE_BUILD]/tmp/uninteresting_hashes.txt"
309 ], 307 ],
310 "cwd": "[SLAVE_BUILD]/skia", 308 "cwd": "[SLAVE_BUILD]/skia",
311 "name": "get uninteresting hashes" 309 "name": "get uninteresting hashes",
310 "~followup_annotations": [
311 "@@@STEP_LOG_LINE@python.inline@@@@",
312 "@@@STEP_LOG_LINE@python.inline@import contextlib@@@",
313 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
314 "@@@STEP_LOG_LINE@python.inline@import urllib2@@@",
315 "@@@STEP_LOG_LINE@python.inline@@@@",
316 "@@@STEP_LOG_LINE@python.inline@HASHES_URL = 'https://gold.skia.org/2/_/ha shes'@@@",
317 "@@@STEP_LOG_LINE@python.inline@@@@",
318 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@",
319 "@@@STEP_LOG_LINE@python.inline@ with contextlib.closing(urllib2.urlopen( HASHES_URL)) as w:@@@",
320 "@@@STEP_LOG_LINE@python.inline@ f.write(w.read())@@@",
321 "@@@STEP_LOG_END@python.inline@@@"
322 ]
312 }, 323 },
313 { 324 {
314 "cmd": [ 325 "cmd": [
315 "python", 326 "python",
316 "-u", 327 "-u",
317 "[SLAVE_BUILD]/skia/tools/dm_flags.py", 328 "[SLAVE_BUILD]/skia/tools/dm_flags.py",
318 "/path/to/tmp/json", 329 "/path/to/tmp/json",
319 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN" 330 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN"
320 ], 331 ],
321 "cwd": "[SLAVE_BUILD]/skia", 332 "cwd": "[SLAVE_BUILD]/skia",
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 "164710", 394 "164710",
384 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN", 395 "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-TSAN",
385 "5", 396 "5",
386 "", 397 "",
387 "[SLAVE_BUILD]/skia/common/py/utils" 398 "[SLAVE_BUILD]/skia/common/py/utils"
388 ], 399 ],
389 "cwd": "[SLAVE_BUILD]/skia", 400 "cwd": "[SLAVE_BUILD]/skia",
390 "name": "Upload DM Results" 401 "name": "Upload DM Results"
391 } 402 }
392 ] 403 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698