We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b06b173 commit d6abbadCopy full SHA for d6abbad
1 file changed
.github/workflows/r.yml
@@ -83,6 +83,13 @@ jobs:
83
rustup toolchain install stable-x86_64-pc-windows-gnu --no-self-update
84
rustup default stable-x86_64-pc-windows-gnu
85
86
+ - name: Enable Long Paths support (Windows)
87
+ if: matrix.config.os == 'windows-latest'
88
+ shell: pwsh
89
+ run: |
90
+ git config --system core.longpaths true
91
+ New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force
92
+
93
- name: Install dependencies (Linux)
94
if: matrix.config.os == 'ubuntu-latest'
95
run: sudo apt-get update && sudo apt-get install -y libgeos-dev
0 commit comments