Skip to content

Commit 68a22e2

Browse files
committed
* Updated GitHub-action-related configuration files with newer CUDA versions + newer subversions for previous CUDA versions.
* Removed some redundant entries in the launch matrix
1 parent 67a68c2 commit 68a22e2

File tree

3 files changed

+17
-13
lines changed

3 files changed

+17
-13
lines changed

.github/action-scripts/install-cuda-windows.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,14 @@ $CUDA_KNOWN_URLS = @{
5050
"12.2.2" = "https://developer.download.nvidia.com/compute/cuda/12.2.2/network_installers/cuda_12.2.2_windows_network.exe";
5151
"12.3.0" = "https://developer.download.nvidia.com/compute/cuda/12.3.0/network_installers/cuda_12.3.0_windows_network.exe";
5252
"12.3.1" = "https://developer.download.nvidia.com/compute/cuda/12.3.1/network_installers/cuda_12.3.1_windows_network.exe";
53+
"12.3.2" = "https://developer.download.nvidia.com/compute/cuda/12.3.2/network_installers/cuda_12.3.2_windows_network.exe";
5354
"12.4.1" = "https://developer.download.nvidia.com/compute/cuda/12.4.1/network_installers/cuda_12.4.1_windows_network.exe";
5455
"12.5.1" = "https://developer.download.nvidia.com/compute/cuda/12.5.1/network_installers/cuda_12.5.1_windows_network.exe";
5556
"12.6.0" = "https://developer.download.nvidia.com/compute/cuda/12.6.0/network_installers/cuda_12.6.0_windows_network.exe";
5657
"12.6.1" = "https://developer.download.nvidia.com/compute/cuda/12.6.1/network_installers/cuda_12.6.1_windows_network.exe";
5758
"12.6.2" = "https://developer.download.nvidia.com/compute/cuda/12.6.2/network_installers/cuda_12.6.2_windows_network.exe";
59+
"12.6.3" = "https://developer.download.nvidia.com/compute/cuda/12.6.3/network_installers/cuda_12.6.3_windows_network.exe";
60+
"12.8.1" = "https://developer.download.nvidia.com/compute/cuda/12.8.1/network_installers/cuda_12.8.1_windows_network.exe";
5861
}
5962

6063
# @todo - change this to be based on _MSC_VER intead, or invert it to be CUDA keyed instead?

.github/workflows/cmake-build-linux.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,23 +34,18 @@ jobs:
3434
matrix:
3535
include:
3636
- os: ubuntu-24.04
37-
cuda: "12.6.2"
37+
cuda: "12.8.1"
3838
gcc: 13
3939
shell: "bash"
4040
cmake-generator: "Unix Makefiles"
4141
- os: ubuntu-24.04
42-
cuda: "12.5.1"
42+
cuda: "12.6.3"
4343
gcc: 13
4444
shell: "bash"
4545
cmake-generator: "Unix Makefiles"
46-
- os: ubuntu-20.04
47-
cuda: "12.6.0"
48-
gcc: 10
49-
shell: "bash"
50-
cmake-generator: "Unix Makefiles"
51-
- os: ubuntu-20.04
46+
- os: ubuntu-24.04
5247
cuda: "12.5.1"
53-
gcc: 10
48+
gcc: 13
5449
shell: "bash"
5550
cmake-generator: "Unix Makefiles"
5651
- os: ubuntu-20.04
@@ -59,7 +54,7 @@ jobs:
5954
shell: "bash"
6055
cmake-generator: "Unix Makefiles"
6156
- os: ubuntu-20.04
62-
cuda: "12.3.1"
57+
cuda: "12.3.2"
6358
gcc: 10
6459
shell: "bash"
6560
cmake-generator: "Unix Makefiles"

.github/workflows/cmake-build-windows.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,17 @@ jobs:
3030
matrix:
3131
include:
3232
- os: windows-2022
33-
cuda: "12.6.2"
33+
cuda: "12.8.1"
34+
visual-studio: "Visual Studio 17 2022"
35+
shell: "powershell"
36+
os-type: "windows"
37+
cmake-platform-flag: "-A x64"
38+
- os: windows-2022
39+
cuda: "12.6.3"
3440
visual-studio: "Visual Studio 17 2022"
3541
shell: "powershell"
3642
os-type: "windows"
3743
cmake-platform-flag: "-A x64"
38-
# Windows2019 & VS 2019 supports CUDA 10.1+
3944
- os: windows-2019
4045
cuda: "12.6.2"
4146
visual-studio: "Visual Studio 16 2019"
@@ -55,7 +60,7 @@ jobs:
5560
os-type: "windows"
5661
cmake-platform-flag: "-A x64"
5762
- os: windows-2019
58-
cuda: "12.3.1"
63+
cuda: "12.3.2"
5964
visual-studio: "Visual Studio 16 2019"
6065
shell: "powershell"
6166
os-type: "windows"
@@ -144,6 +149,7 @@ jobs:
144149
shell: "powershell"
145150
os-type: "windows"
146151
cmake-platform-flag: "-A x64"
152+
# Upper Windows2019 & VS 2019 support CUDA 10.1+
147153
# - os: windows-2019
148154
# cuda: "10.2.89"
149155
# visual-studio: "Visual Studio 16 2019"

0 commit comments

Comments
 (0)