Skip to content

Commit 64eeff6

Browse files
committed
ci : fix CUDA_CACHE_PATH for Windows
This commit updates the CUDA_CACHE_PATH to use backslashes for Windows.
1 parent 00edb1d commit 64eeff6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -599,8 +599,8 @@ jobs:
599599

600600
- name: Configure CUDA compilation cache
601601
run: |
602-
New-Item -Path "${{ github.workspace }}/cuda_cache" -ItemType Directory -Force
603-
echo "CUDA_CACHE_PATH=${{ github.workspace }}/cuda_cache" | Out-File -FilePath $env:GITHUB_ENV -Append
602+
New-Item -Path "${{ github.workspace }}\cuda_cache" -ItemType Directory -Force
603+
echo "CUDA_CACHE_PATH=${{ github.workspace }}\cuda_cache" | Out-File -FilePath $env:GITHUB_ENV -Append
604604
echo "CUDA_CACHE_MAXSIZE=4294967296" | Out-File -FilePath $env:GITHUB_ENV -Append
605605
606606
- name: Cache CUDA compilation results

0 commit comments

Comments
 (0)