Skip to content

Commit 954366a

Browse files
committed
update cuda to 12.9.1 in testWindows
1 parent 5d26308 commit 954366a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/testWindows.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ jobs:
5151
shell: pwsh
5252
run: .\Scripts\setup-cuda.ps1
5353
env:
54-
INPUT_CUDA_VERSION: 12.5.1
54+
# if you want to change the cuda version, go to Scripts/setup-cuda-ps1 and add a download link for the new version there.
55+
INPUT_CUDA_VERSION: 12.9.1
5556

5657
- name: Configure CMake
5758
run: cmake -B ${{github.workspace}}/build -DRAYX_WERROR=ON -DRAYX_REQUIRE_CUDA=ON -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}

Scripts/setup-cuda.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ $src = "cuda"
1717
$dst = "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v$($CUDA_MAJOR).$($CUDA_MINOR)"
1818
$installer = "cuda.exe"
1919

20-
if ($CUDA_VERSION_FULL -eq "12.5.1") {
20+
if ($CUDA_VERSION_FULL -eq "12.9.1") {
21+
$downloadUrl = "https://developer.download.nvidia.com/compute/cuda/12.9.1/local_installers/cuda_12.9.1_576.57_windows.exe"
22+
} elseif ($CUDA_VERSION_FULL -eq "12.5.1") {
2123
$downloadUrl = "https://developer.download.nvidia.com/compute/cuda/12.5.1/local_installers/cuda_12.5.1_555.85_windows.exe"
2224
} elseif ($CUDA_VERSION_FULL -eq "12.5.0") {
2325
$downloadUrl = "https://developer.download.nvidia.com/compute/cuda/12.5.0/local_installers/cuda_12.5.0_555.85_windows.exe"

0 commit comments

Comments
 (0)