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

Side by Side Diff: scripts/slave/recipes/v8/auto_roll_release_process.expected/same_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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 "stdout": "/path/to/tmp/", 144 "stdout": "/path/to/tmp/",
145 "~followup_annotations": [ 145 "~followup_annotations": [
146 "@@@STEP_LOG_LINE@ref@74882b7a8e55268d1658f83efefa1c2585cee723@@@", 146 "@@@STEP_LOG_LINE@ref@74882b7a8e55268d1658f83efefa1c2585cee723@@@",
147 "@@@STEP_LOG_END@ref@@@" 147 "@@@STEP_LOG_END@ref@@@"
148 ] 148 ]
149 }, 149 },
150 { 150 {
151 "cmd": [ 151 "cmd": [
152 "python", 152 "python",
153 "-u", 153 "-u",
154 "\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", 154 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
155 "[SLAVE_BUILD]/timestamp.txt", 155 "[SLAVE_BUILD]/timestamp.txt",
156 "/path/to/tmp/" 156 "/path/to/tmp/"
157 ], 157 ],
158 "name": "check timestamp" 158 "name": "check timestamp"
159 }, 159 },
160 { 160 {
161 "cmd": [ 161 "cmd": [
162 "python", 162 "python",
163 "-u", 163 "-u",
164 "[SLAVE_BUILD]/v8/tools/release/check_clusterfuzz.py", 164 "[SLAVE_BUILD]/v8/tools/release/check_clusterfuzz.py",
(...skipping 19 matching lines...) Expand all
184 "There is no new candidate." 184 "There is no new candidate."
185 ], 185 ],
186 "name": "log (3)" 186 "name": "log (3)"
187 }, 187 },
188 { 188 {
189 "name": "$result", 189 "name": "$result",
190 "recipe_result": null, 190 "recipe_result": null,
191 "status_code": 0 191 "status_code": 0
192 } 192 }
193 ] 193 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698