-
-
Notifications
You must be signed in to change notification settings - Fork 33.9k
tools: don't fetch V8 deps in the source tree #60883
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The Node.js source tree already includes several V8 DEPS under `deps/v8/third_party` that are needed to build Node.js. Exclude these in `tools/v8/fetch_deps.py` to prevent "Conflicting directory" warnings when running the V8 CI.
9ae7965 to
e25a6ce
Compare
lpinca
approved these changes
Nov 29, 2025
cjihrig
approved these changes
Nov 29, 2025
targos
approved these changes
Dec 1, 2025
Collaborator
Collaborator
Collaborator
Collaborator
Collaborator
Member
Author
|
As expected, now down to two warnings (as noted in the description): |
Collaborator
|
Landed in 90ff75f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The Node.js source tree already includes several V8 DEPS under
deps/v8/third_partythat are needed to build Node.js. Exclude these intools/v8/fetch_deps.pyto prevent "Conflicting directory" warnings when running the V8 CI.e.g. https://ci.nodejs.org/job/node-test-commit-v8-linux/6886/nodes=benchmark-ubuntu2204-intel-64,v8test=v8test/consoleFull
I initially added all of the above to the overrides in
tools/v8/fetch_deps.pybut the V8 CI failed when some of them were skipped which suggests the V8 build requires things that have been removed from/not copied into the Node.js source tree:v8/third_party/googletest/srcv8/third_party/zlibso I have left the above two out of this PR (i.e. we'll still get warnings for those).
cc @nodejs/v8-update