Skip to content

Commit

Permalink
Add MSVC 14.37. (#171)
Browse files Browse the repository at this point in the history
* Add MSVC 14.37.

* Fix missing values in MSVC maps

* Fixup msvc version
  • Loading branch information
wmaxey authored Nov 16, 2023
1 parent 01c9c37 commit 2b49113
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ include:
- {features: [{<<: *cuda_curr_max, <<: *cccl_cuda_opts}, { name: "cl", version: "14.27" }]} # MSVC 2019
- {features: [{<<: *cuda_curr_max, <<: *cccl_cuda_opts}, { name: "cl", version: "14.28" }]} # MSVC 2019
- {features: [{<<: *cuda_curr_max, <<: *cccl_cuda_opts}, { name: "cl", version: "14.29" }]} # MSVC 2019
- {features: [{<<: *cuda_curr_max, <<: *cccl_cuda_opts}, { name: "cl", version: "14.34" }]} # MSVC 2022
- {features: [{<<: *cuda_curr_max, <<: *cccl_cuda_opts}, { name: "cl", version: "14.35" }]} # MSVC 2022
- {features: [{<<: *cuda_curr_max, <<: *cccl_cuda_opts}, { name: "cl", version: "14.36" }]} # MSVC 2022
- {features: [{<<: *cuda_curr_max, <<: *cccl_cuda_opts}, { name: "cl", version: "14.37" }]} # MSVC 2022

# RAPIDS devcontainers

Expand Down
1 change: 1 addition & 0 deletions windows/image/installers/build-env.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ $MSBuildPathMap = @{
"14.34"="$MSBuildPath\17\VC\Auxiliary\Build"
"14.35"="$MSBuildPath\17\VC\Auxiliary\Build"
"14.36"="$MSBuildPath\17\VC\Auxiliary\Build"
"14.37"="$MSBuildPath\17\VC\Auxiliary\Build"
"latest"="$MSBuildPath\$ENV:INSTALLED_MSVC_VERSION\VC\Auxiliary\Build"
}

Expand Down
1 change: 1 addition & 0 deletions windows/image/installers/install-vs.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ $vsComponentsMap = @{
"14.34" = "Microsoft.VisualStudio.Component.VC.14.34.17.4.x86.x64"
"14.35" = "Microsoft.VisualStudio.Component.VC.14.35.17.5.x86.x64"
"14.36" = "Microsoft.VisualStudio.Component.VC.14.36.17.6.x86.x64"
"14.37" = "Microsoft.VisualStudio.Component.VC.14.37.17.7.x86.x64"
"latest" = "Microsoft.VisualStudio.Component.VC.Tools.x86.x64"
}

Expand Down
3 changes: 2 additions & 1 deletion windows/vs-version-matrix.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$global:vsVerToCompilers = @{
"2017"=("14.14", "14.15", "14.16");
"2019"=("14.27", "14.28", "14.29");
"2022"=("14.34", "14.35", "14.36");
"2022"=("14.35", "14.36", "14.37");
}

$global:vsCompilersToYear = @{
Expand All @@ -14,6 +14,7 @@ $global:vsCompilersToYear = @{
"14.34"="2022"
"14.35"="2022"
"14.36"="2022"
"14.37"="2022"
"latest"="2022"
}

Expand Down

0 comments on commit 2b49113

Please sign in to comment.