We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edfc7d0 commit a7a5897Copy full SHA for a7a5897
.github/actions/setup-toolchain/action.yml
@@ -21,6 +21,11 @@ inputs:
21
runs:
22
using: composite
23
steps:
24
+ - name: Enable long paths (Windows)
25
+ if: ${{ runner.os == 'Windows' }}
26
+ run: |
27
+ New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force
28
+ shell: powershell
29
- name: Set up Ccache
30
id: setup-ccache
31
if: ${{ inputs.platform == 'ios' || inputs.platform == 'macos' || inputs.platform == 'visionos' }}
0 commit comments