fix(core): add missing FileType import for Windows watcher build#34369
fix(core): add missing FileType import for Windows watcher build#34369FrozenPandaz merged 1 commit intomasterfrom
Conversation
✅ Deploy Preview for nx-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
View your CI Pipeline Execution ↗ for commit 43e53da
☁️ Nx Cloud last updated this comment at |
✅ Deploy Preview for nx-dev ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
There was a problem hiding this comment.
Nx Cloud has identified a possible root cause for your failed CI:
Our e2e-gradle tests are failing due to an environment issue unrelated to this PR's changes. The foojay toolchain resolver is returning 503 errors, and the identical failures appear in the master branch, confirming this is a pre-existing environmental problem rather than a regression from the Rust FileType import fix.
No code changes were suggested for this issue.
Trigger a rerun:
🎓 Learn more about Self-Healing CI on nx.dev
|
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
Current Behavior
The Windows build (
aarch64-pc-windows-msvc) fails to compile with:The
FileTypetype is used inside a#[cfg(target_os = "windows")]block but was not imported.Expected Behavior
The Windows build compiles successfully. The
FileTypeimport is scoped inside the#[cfg(target_os = "windows")]block (matching the existing pattern in the macOS block) so there are no unused imports on any platform.Related Issue(s)
N/A — build breakage discovered during CI publish workflow.