diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 4319f65af6..2ce73c1662 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -62,6 +62,10 @@ jobs: git config --global credential.helper 'store --file /tmp/git-credentials' echo 'https://${{ github.token }}@github.com' > /tmp/git-credentials + - name: Enable Git Long-paths Support + if: runner.os == 'Windows' + run: git config --system core.longpaths true + - name: Check expanded matrix config if: github.event.inputs.expanded_matrix == '1' run: | diff --git a/.github/workflows/desktop.yml b/.github/workflows/desktop.yml index 5ab4c7089a..87e7ed7622 100644 --- a/.github/workflows/desktop.yml +++ b/.github/workflows/desktop.yml @@ -101,6 +101,10 @@ jobs: git config --global credential.helper 'store --file /tmp/git-credentials' echo 'https://${{ github.token }}@github.com' > /tmp/git-credentials + - name: Enable Git Long-paths Support + if: runner.os == 'Windows' + run: git config --system core.longpaths true + - name: Setup Xcode version (macos) if: runner.os == 'macOS' run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode_version }}.app/Contents/Developer diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 83c00e4ae3..cb3bf1f4b1 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -277,6 +277,9 @@ jobs: run: | git config --global credential.helper 'store --file /tmp/git-credentials' echo 'https://${{ github.token }}@github.com' > /tmp/git-credentials + - name: Enable Git Long-paths Support + if: runner.os == 'Windows' + run: git config --system core.longpaths true - name: Set env vars (Linux) if: startsWith(matrix.os, 'ubuntu') run: echo "VCPKG_TRIPLET=x64-linux" >> $GITHUB_ENV @@ -471,6 +474,9 @@ jobs: run: | git config --global credential.helper 'store --file /tmp/git-credentials' echo 'https://${{ github.token }}@github.com' > /tmp/git-credentials + - name: Enable Git Long-paths Support + if: runner.os == 'Windows' + run: git config --system core.longpaths true - name: Add msbuild to PATH (Windows) if: startsWith(matrix.os, 'windows') uses: microsoft/setup-msbuild@v1.0.2