Enable long path error on windows

This commit is contained in:
Arnaud 2026-01-23 20:41:20 +04:00
parent bebf52b185
commit 92b10d38aa
No known key found for this signature in database
GPG Key ID: 20E40A5D3110766F

View File

@ -29,6 +29,12 @@ jobs:
lib_ext: dll
steps:
- name: Enable long paths (Windows)
if: matrix.target.os == 'windows-latest'
shell: msys2 {0}
run: |
git config --global core.longpaths true
- name: Check out sources
uses: actions/checkout@v4
with: