tools: don't fetch V8 deps in the source tree #60883
Open
+8
−0
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