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

Side by Side Diff: scripts/slave/recipes/skia/swarm_trigger.expected/Build-Ubuntu-GCC-Arm64-Debug-Android_Vulkan.json

Issue 2402583003: Revert "Fix file.copy recipe_module to not fail if files are already equal." (Closed)
Patch Set: Created 4 years, 2 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 "remote", 5 "remote",
6 "set-url", 6 "set-url",
7 "origin", 7 "origin",
8 "https://skia.googlesource.com/skia.git" 8 "https://skia.googlesource.com/skia.git"
9 ], 9 ],
10 "cwd": "[SLAVE_BUILD]/skia", 10 "cwd": "[SLAVE_BUILD]/skia",
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 "@@@STEP_LOG_LINE@json.output@ \"upload_dm_results\": true, @@@", 432 "@@@STEP_LOG_LINE@json.output@ \"upload_dm_results\": true, @@@",
433 "@@@STEP_LOG_LINE@json.output@ \"upload_perf_results\": false@@@", 433 "@@@STEP_LOG_LINE@json.output@ \"upload_perf_results\": false@@@",
434 "@@@STEP_LOG_LINE@json.output@}@@@", 434 "@@@STEP_LOG_LINE@json.output@}@@@",
435 "@@@STEP_LOG_END@json.output@@@" 435 "@@@STEP_LOG_END@json.output@@@"
436 ] 436 ]
437 }, 437 },
438 { 438 {
439 "cmd": [ 439 "cmd": [
440 "python", 440 "python",
441 "-u", 441 "-u",
442 "\nimport shutil\nimport sys\n# Apparently, shutil.copy fails if files are binary-equal on *nix OSes.\n# See http://crbug.com/636168#c8.\nif hasattr(shuti l, '_samefile'):\n if shutil._samefile(sys.argv[1], sys.argv[2]):\n sys.exit (0)\nshutil.copy(sys.argv[1], sys.argv[2])\n", 442 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
443 "[SLAVE_BUILD]/skia/infra/bots/assets/android_sdk/VERSION", 443 "[SLAVE_BUILD]/skia/infra/bots/assets/android_sdk/VERSION",
444 "/path/to/tmp/" 444 "/path/to/tmp/"
445 ], 445 ],
446 "name": "read android_sdk VERSION" 446 "name": "read android_sdk VERSION"
447 }, 447 },
448 { 448 {
449 "cmd": [ 449 "cmd": [
450 "python", 450 "python",
451 "-u", 451 "-u",
452 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", 452 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n",
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 "@@@STEP_LINK@shard #0 isolated out@blah@@@", 680 "@@@STEP_LINK@shard #0 isolated out@blah@@@",
681 "@@@STEP_LINK@view steps on Milo@https://luci-milo.appspot.com/swarming/ta sk/148aa78d7aa0000@@@" 681 "@@@STEP_LINK@view steps on Milo@https://luci-milo.appspot.com/swarming/ta sk/148aa78d7aa0000@@@"
682 ] 682 ]
683 }, 683 },
684 { 684 {
685 "name": "$result", 685 "name": "$result",
686 "recipe_result": null, 686 "recipe_result": null,
687 "status_code": 0 687 "status_code": 0
688 } 688 }
689 ] 689 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698