fix(ci): allow longpaths for windows#20075
Merged
graphite-app[bot] merged 1 commit intomainfrom Mar 8, 2026
Merged
Conversation
Member
Author
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
611fd5e to
08db8ea
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
This PR aims to fix Windows CI/release failures caused by Git path length limits by enabling Git’s long path support prior to checkout.
Changes:
- Enable
core.longpathsin the Windows CI job before repository checkout. - Add the same long-path Git configuration step to the release workflows that use OS/target matrices.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .github/workflows/reusable_release_napi.yml | Adds a Git long-path configuration step ahead of checkout in the NAPI release build matrix. |
| .github/workflows/release_apps.yml | Adds a Git long-path configuration step ahead of checkout in the app release build matrix. |
| .github/workflows/ci.yml | Adds a Git long-path configuration step ahead of checkout for the Windows CI job. |
9f07f63 to
e863fec
Compare
camc314
approved these changes
Mar 6, 2026
Contributor
Merge activity
|
After #20044 the paths are too long for windows git. The windows CI is failing because of this: https://github.com/oxc-project/oxc/actions/runs/22763163089/job/66024371179 Solution found in https://stackoverflow.com/a/22575737/7387397 Should work again: https://github.com/oxc-project/oxc/actions/runs/22764481037/job/66028823796?pr=20075
e863fec to
fe11b75
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.

After #20044 the paths are too long for windows git.
The windows CI is failing because of this: https://github.com/oxc-project/oxc/actions/runs/22763163089/job/66024371179
Solution found in https://stackoverflow.com/a/22575737/7387397
Should work again: https://github.com/oxc-project/oxc/actions/runs/22764481037/job/66028823796?pr=20075