FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

tools: fix `vcbuild test` when path contain spaces by stduhpf · Pull Request #56481 · nodejs/node · GitHub

/ node Public

tools: fix vcbuild test when path contain spaces - #56481

Merged
nodejs-github-bot merged 3 commits into
nodejs:mainfrom
stduhpf:vcbuild-test-spaces
Dec 9, 2025
Merged

tools: fix vcbuild test when path contain spaces#56481
nodejs-github-bot merged 3 commits into
nodejs:mainfrom
stduhpf:vcbuild-test-spaces

Conversation

stduhpf commented Jan 5, 2025

Copy link
Copy Markdown
Contributor

No description provided.

nodejs-github-bot added build Issues and PRs related to build files or the CI. needs-ci PRs that need a full CI run. windows Issues and PRs related to the Windows platform. labels Jan 5, 2025
stduhpf force-pushed the vcbuild-test-spaces branch from 64b16c5 to 7a4087c Compare January 5, 2025 16:58
stduhpf changed the title tools: fix cbuild test when path contain spaces tools: fix vcbuild test when path contain spaces Jan 5, 2025
aduh95 added author ready PRs that have at least one approval, no outstanding review comments, and a CI started. request-ci Add this label to start a Jenkins CI on a PR. labels Jan 5, 2025
github-actions Bot removed the request-ci Add this label to start a Jenkins CI on a PR. label Jan 5, 2025

Copy link
Copy Markdown
Collaborator

Comment thread vcbuild.bat Outdated
lpinca added commit-queue Add this label to land a pull request using GitHub Actions. commit-queue-squash Add this label to instruct the Commit Queue to squash all the PR commits into the first one. request-ci Add this label to start a Jenkins CI on a PR. labels Jan 5, 2025
github-actions Bot removed the request-ci Add this label to start a Jenkins CI on a PR. label Jan 5, 2025

Copy link
Copy Markdown
Collaborator

aduh95 removed author ready PRs that have at least one approval, no outstanding review comments, and a CI started. commit-queue Add this label to land a pull request using GitHub Actions. labels Jan 5, 2025

aduh95 commented Jan 5, 2025
edited
Loading

Copy link
Copy Markdown
Contributor

Related failure on Windows:

> "Release\node.exe" deps\npm\bin\npm-cli.js ci 
The system cannot find the path specified.

Dropping/Reverting c33319c should fix the issue.

lpinca commented Jan 6, 2025

Copy link
Copy Markdown
Member

Adding the following patch without reverting c33319c should also fix the issue.

diff --git a/vcbuild.bat b/vcbuild.bat
index f93998d2b1..c5fd1a5d0c 100644
--- a/vcbuild.bat
+++ b/vcbuild.bat
@@ -590,9 +590,7 @@ if not defined doc if not defined build_addons (
 )
 if exist "tools\doc\node_modules\unified\package.json" goto skip-install-doctools
 SETLOCAL
-cd tools\doc
-%npm_exe% ci
-cd ..\..
+%npm_exe% --prefix tools\doc ci
 if errorlevel 1 goto exit
 ENDLOCAL
 :skip-install-doctools
@@ -735,9 +733,7 @@ goto lint-js-build
 
 :lint-js-build
 if not defined lint_js_build if not defined lint_js if not defined lint_js_fix goto lint-md-build
-cd tools\eslint
-%npm_exe% ci
-cd ..\..
+%npm_exe% --prefix tools\eslint ci
 
 :lint-js
 if not defined lint_js goto lint-js-fix
@@ -755,9 +751,7 @@ goto lint-md-build
 
 :lint-md-build
 if not defined lint_md if not defined format_md goto lint-md
-cd tools\lint-md
-%npm_exe% ci
-cd ..\..
+%npm_exe% --prefix tools\lint-md ci
 
 :lint-md
 if not defined lint_md goto format-md

Copy link
Copy Markdown
Collaborator

aduh95 force-pushed the vcbuild-test-spaces branch from 0b3d6fa to f1b58d2 Compare December 6, 2025 23:41

Copy link
Copy Markdown
Collaborator

Copy link
Copy Markdown
Collaborator

Copy link
Copy Markdown
Collaborator

Copy link
Copy Markdown
Collaborator

aduh95 added the commit-queue Add this label to land a pull request using GitHub Actions. label Dec 9, 2025
nodejs-github-bot removed the commit-queue Add this label to land a pull request using GitHub Actions. label Dec 9, 2025
nodejs-github-bot merged commit 0ffa607 into nodejs:main Dec 9, 2025
52 checks passed

Copy link
Copy Markdown
Collaborator

Landed in 0ffa607

aduh95 pushed a commit that referenced this pull request Jan 9, 2026
PR-URL: #56481
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
aduh95 pushed a commit that referenced this pull request Jan 12, 2026
PR-URL: #56481
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
RafaelGSS pushed a commit that referenced this pull request Jan 13, 2026
PR-URL: #56481
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
aduh95 pushed a commit that referenced this pull request Jan 19, 2026
PR-URL: #56481
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
aduh95 pushed a commit that referenced this pull request Feb 17, 2026
PR-URL: #56481
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
aduh95 pushed a commit that referenced this pull request Feb 19, 2026
PR-URL: #56481
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
aduh95 pushed a commit that referenced this pull request Feb 21, 2026
PR-URL: #56481
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
aduh95 mentioned this pull request Feb 22, 2026
aduh95 pushed a commit that referenced this pull request Feb 23, 2026
PR-URL: #56481
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

build Issues and PRs related to build files or the CI. commit-queue-squash Add this label to instruct the Commit Queue to squash all the PR commits into the first one. needs-ci PRs that need a full CI run. windows Issues and PRs related to the Windows platform.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants


Back | FazBrowse Home | New Git URL