Skip to content

Commit 335a85a

Browse files
committed
build: fix CUDA 13 installation on Windows CI
1 parent f4cf4c3 commit 335a85a

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,12 +136,10 @@ jobs:
136136
use-local-cache: false
137137

138138
- name: Install Cuda 13.0 on Windows (2)
139-
if: matrix.config.name == 'Windows (2)'
140-
uses: Jimver/cuda-toolkit@v0.2.27
141-
with:
142-
cuda: '13.0.0'
143-
method: 'network'
144-
sub-packages: '["nvcc", "cudart", "cublas", "cublas_dev", "thrust", "visual_studio_integration"]'
139+
run: |
140+
wget -c https://developer.download.nvidia.com/compute/cuda/13.0.0/network_installers/cuda_13.0.0_windows_network.exe -O cuda_13.0.0_windows_network.exe
141+
./cuda_13.0.0_windows_network.exe -s nvcc_13.0,cudart_13.0,cublas_13.0,cublas_dev_13.0,thrust_13.0,visual_studio_integration_13.0
142+
rm -f ./cuda_13.0.0_windows_network.exe
145143
146144
- name: Install Cuda 12.4 on Ubuntu
147145
if: matrix.config.name == 'Ubuntu (1)'

0 commit comments

Comments
 (0)