-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[v12.x] deps: revert whitespace changes on V8 #32605
Conversation
While landing some of the V8 upgrades on the v12 branch, something went wrong and git made unecessary (and incorrect) whitespace changes to test fixtures, which broke V8 tests. This was likely caused by the use of `git node land` or a simiar tool. Revert those changes to fix our tests. Since this only reverts unwanted changes on deps/v8, and it only affects tests, don't bump v8_embedder_string.
Extra care is needed here when landing to prevent git from stripping the trailing spaces. |
@mmarchini if / when I land I'll use my custom git alias patchit-please = "!f() { curl -L $1.patch | git am -3; }; f"
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
While landing some of the V8 upgrades on the v12 branch, something went wrong and git made unecessary (and incorrect) whitespace changes to test fixtures, which broke V8 tests. This was likely caused by the use of `git node land` or a simiar tool. Revert those changes to fix our tests. Since this only reverts unwanted changes on deps/v8, and it only affects tests, don't bump v8_embedder_string. PR-URL: #32605 Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Shelley Vohr <codebytere@gmail.com>
V8-CI is green and the various CI failures we are seeing have 0 to do with the whitespace fixes that are present in the PR. I'm going to go ahead and land them so we can unblock other V8 PRs landed in 784df12 |
While landing some of the V8 upgrades on the v12 branch, something went
wrong and git made unecessary (and incorrect) whitespace changes to test
fixtures, which broke V8 tests. This was likely caused by the use of
git node land
or a simiar tool. Revert those changes to fix our tests.Since this only reverts unwanted changes on deps/v8, and it only affects
tests, don't bump v8_embedder_string.
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes