Closed stefankiesz closed 8 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 16.48%. Comparing base (
c0b9d52
) to head (6590155
).:exclamation: Current head 6590155 differs from pull request most recent head 4273108. Consider uploading reports for the commit 4273108 to get more accurate results
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
If (3) git config --system core.longpaths true
didn't fix the issue, can we remove it from the CI?
Can we can simply configure the checkout action to clone the repository to a certain path?
- name: Checkout Repository
uses: actions/checkout@v3
with:
path: 'C:\repo'
If (3)
git config --system core.longpaths true
didn't fix the issue, can we remove it from the CI?
That's needed in the build later I think
The issue was related to path length being too long for Windows. Specifying to use long paths using the following does not fix the issue:
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem" /v LongPathsEnabled /t REG_DWORD /d 1 /f
New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" ` -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force
git config --system core.longpaths true
Similar to our Windows CI test in WebRTC SDK, the cloned repository is now moved to a shorter path.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.