File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 62
62
git config --global credential.helper 'store --file /tmp/git-credentials'
63
63
echo 'https://${{ github.token }}@github.com' > /tmp/git-credentials
64
64
65
+ - name : Enable Git Long-paths Support
66
+ if : runner.os == 'Windows'
67
+ run : git config --system core.longpaths true
68
+
65
69
- name : Check expanded matrix config
66
70
if : github.event.inputs.expanded_matrix == '1'
67
71
run : |
Original file line number Diff line number Diff line change @@ -101,6 +101,10 @@ jobs:
101
101
git config --global credential.helper 'store --file /tmp/git-credentials'
102
102
echo 'https://${{ github.token }}@github.com' > /tmp/git-credentials
103
103
104
+ - name : Enable Git Long-paths Support
105
+ if : runner.os == 'Windows'
106
+ run : git config --system core.longpaths true
107
+
104
108
- name : Setup Xcode version (macos)
105
109
if : runner.os == 'macOS'
106
110
run : sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode_version }}.app/Contents/Developer
Original file line number Diff line number Diff line change @@ -277,6 +277,9 @@ jobs:
277
277
run : |
278
278
git config --global credential.helper 'store --file /tmp/git-credentials'
279
279
echo 'https://${{ github.token }}@github.com' > /tmp/git-credentials
280
+ - name : Enable Git Long-paths Support
281
+ if : runner.os == 'Windows'
282
+ run : git config --system core.longpaths true
280
283
- name : Set env vars (Linux)
281
284
if : startsWith(matrix.os, 'ubuntu')
282
285
run : echo "VCPKG_TRIPLET=x64-linux" >> $GITHUB_ENV
@@ -471,6 +474,9 @@ jobs:
471
474
run : |
472
475
git config --global credential.helper 'store --file /tmp/git-credentials'
473
476
echo 'https://${{ github.token }}@github.com' > /tmp/git-credentials
477
+ - name : Enable Git Long-paths Support
478
+ if : runner.os == 'Windows'
479
+ run : git config --system core.longpaths true
474
480
- name : Add msbuild to PATH (Windows)
475
481
if : startsWith(matrix.os, 'windows')
476
482
You can’t perform that action at this time.
0 commit comments