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

Side by Side Diff: scripts/slave/recipes/cronet.expected/android_cronet_lollipop_builder.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 "python", 4 "python",
5 "-u", 5 "-u",
6 "\nimport os, sys\n\nbuild_path = sys.argv[1]\nif os.path.exists(build_pat h):\n for (path, dir, files) in os.walk(build_path):\n for cur_file in files :\n if cur_file.endswith('index.lock'):\n path_to_file = os.path.joi n(path, cur_file)\n print 'deleting %s' % path_to_file\n os.remove (path_to_file)\n", 6 "\nimport os, sys\n\nbuild_path = sys.argv[1]\nif os.path.exists(build_pat h):\n for (path, dir, files) in os.walk(build_path):\n for cur_file in files :\n if cur_file.endswith('index.lock'):\n path_to_file = os.path.joi n(path, cur_file)\n print 'deleting %s' % path_to_file\n os.remove (path_to_file)\n",
7 "[SLAVE_BUILD]" 7 "[SLAVE_BUILD]"
8 ], 8 ],
9 "name": "cleanup index.lock", 9 "name": "cleanup index.lock",
10 "~followup_annotations": [ 10 "~followup_annotations": [
(...skipping 825 matching lines...) Expand 10 before | Expand all | Expand 10 after
836 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release", 836 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Release",
837 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 837 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
838 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 838 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
839 }, 839 },
840 "name": "stack_tool_with_logcat_dump" 840 "name": "stack_tool_with_logcat_dump"
841 }, 841 },
842 { 842 {
843 "cmd": [ 843 "cmd": [
844 "python", 844 "python",
845 "-u", 845 "-u",
846 "\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", 846 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
847 "[SLAVE_BUILD]/src/chrome/VERSION", 847 "[SLAVE_BUILD]/src/chrome/VERSION",
848 "/path/to/tmp/" 848 "/path/to/tmp/"
849 ], 849 ],
850 "name": "get version" 850 "name": "get version"
851 }, 851 },
852 { 852 {
853 "cmd": [ 853 "cmd": [
854 "[SLAVE_BUILD]/src/build/android/tombstones.py", 854 "[SLAVE_BUILD]/src/build/android/tombstones.py",
855 "-a", 855 "-a",
856 "-s", 856 "-s",
(...skipping 24 matching lines...) Expand all
881 "@@@STEP_LOG_LINE@python.inline@ os.remove(report)@@@", 881 "@@@STEP_LOG_LINE@python.inline@ os.remove(report)@@@",
882 "@@@STEP_LOG_END@python.inline@@@" 882 "@@@STEP_LOG_END@python.inline@@@"
883 ] 883 ]
884 }, 884 },
885 { 885 {
886 "name": "$result", 886 "name": "$result",
887 "recipe_result": null, 887 "recipe_result": null,
888 "status_code": 0 888 "status_code": 0
889 } 889 }
890 ] 890 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698