From 3b78de89c08b251297b43ec7bf4d36e6a971e982 Mon Sep 17 00:00:00 2001 From: Edouard Coussoux Date: Mon, 3 Nov 2025 12:51:33 +0100 Subject: [PATCH] ci: Add step to doc-build job for enabling long paths --- .github/workflows/ci_cd.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index aa7ef0d52..66a4e0086 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -72,6 +72,11 @@ jobs: python -m pip install wheel setuptools -U python -c "import sys; print(sys.executable)" + - name: Enable long paths in Windows + shell: powershell + run: | + New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force + - name: Install project and documentation dependencies run: | .venv\Scripts\Activate.ps1