infra(ci): use maven wrapper instead of mvnd on Windows to avoid daemon crash#6436
Merged
Merged
Conversation
Aias00
approved these changes
Jul 20, 2026
Duansg
force-pushed
the
ci/disable-mvnd-windows
branch
from
July 20, 2026 15:45
1276feb to
29facd1
Compare
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
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.
What
On the Windows leg of the
ciworkflow, build with./mvnw.cmdinstead ofmvnd. mvnd is no longer installed or run on Windows; Linux legs are unchanged.Why
After #6435 merged,
build (17, windows-latest)failed in "Build with Maven":The mvnd daemon (mvnd 1.0.2 / bundled JDK 22) dies mid-build; the client then reads a non-UTF-8 daemon log with the platform charset and throws, masking the real error. It reproduces reliably on Windows (non-UTF-8 default charset) while Linux passes, and the
mvnd --versionguard can't catch it since the daemon dies during the build, not at startup. Skipping mvnd on Windows removes the path.Not caused by #6435 — that PR only refactored paths-filter and touched no build command. Pre-existing Windows/mvnd flake.
./mvnw clean install -Dmaven.javadoc.skip=true.