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/v8/auto_roll_release_process.expected/recent_lkgr.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 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", 6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py",
7 "--spec", 7 "--spec",
8 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'manag ed': True, 'name': 'v8', 'url': 'https://chromium.googlesource.com/v8/v8'}]", 8 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'manag ed': True, 'name': 'v8', 'url': 'https://chromium.googlesource.com/v8/v8'}]",
9 "--patch_root", 9 "--patch_root",
10 "v8", 10 "v8",
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 "https://chromium.googlesource.com/v8/v8", 107 "https://chromium.googlesource.com/v8/v8",
108 "refs/heads/lkgr:refs/heads/lkgr" 108 "refs/heads/lkgr:refs/heads/lkgr"
109 ], 109 ],
110 "cwd": "[SLAVE_BUILD]/v8", 110 "cwd": "[SLAVE_BUILD]/v8",
111 "name": "git push" 111 "name": "git push"
112 }, 112 },
113 { 113 {
114 "cmd": [ 114 "cmd": [
115 "python", 115 "python",
116 "-u", 116 "-u",
117 "\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", 117 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
118 "[SLAVE_BUILD]/refs_heads_lkgr.log", 118 "[SLAVE_BUILD]/refs_heads_lkgr.log",
119 "/path/to/tmp/" 119 "/path/to/tmp/"
120 ], 120 ],
121 "name": "Read refs_heads_lkgr.log" 121 "name": "Read refs_heads_lkgr.log"
122 }, 122 },
123 { 123 {
124 "cmd": [ 124 "cmd": [
125 "python", 125 "python",
126 "-u", 126 "-u",
127 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 127 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 "stdout": "/path/to/tmp/", 194 "stdout": "/path/to/tmp/",
195 "~followup_annotations": [ 195 "~followup_annotations": [
196 "@@@STEP_LOG_LINE@ref@0df953c9e12c1e3b0e37f2d4ef1ef8c319e095cb@@@", 196 "@@@STEP_LOG_LINE@ref@0df953c9e12c1e3b0e37f2d4ef1ef8c319e095cb@@@",
197 "@@@STEP_LOG_END@ref@@@" 197 "@@@STEP_LOG_END@ref@@@"
198 ] 198 ]
199 }, 199 },
200 { 200 {
201 "cmd": [ 201 "cmd": [
202 "python", 202 "python",
203 "-u", 203 "-u",
204 "\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", 204 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
205 "[SLAVE_BUILD]/timestamp.txt", 205 "[SLAVE_BUILD]/timestamp.txt",
206 "/path/to/tmp/" 206 "/path/to/tmp/"
207 ], 207 ],
208 "name": "check timestamp" 208 "name": "check timestamp"
209 }, 209 },
210 { 210 {
211 "cmd": [ 211 "cmd": [
212 "python", 212 "python",
213 "-u", 213 "-u",
214 "[SLAVE_BUILD]/v8/tools/release/check_clusterfuzz.py", 214 "[SLAVE_BUILD]/v8/tools/release/check_clusterfuzz.py",
(...skipping 12 matching lines...) Expand all
227 "Current candidate is 5h old (limit: 8h)." 227 "Current candidate is 5h old (limit: 8h)."
228 ], 228 ],
229 "name": "log" 229 "name": "log"
230 }, 230 },
231 { 231 {
232 "name": "$result", 232 "name": "$result",
233 "recipe_result": null, 233 "recipe_result": null,
234 "status_code": 0 234 "status_code": 0
235 } 235 }
236 ] 236 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698