Skip to content

Commit 429f145

Browse files
Toolset update: MSVC Compiler 19.50.35717 (#5879)
1 parent ab6dec6 commit 429f145

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

.github/workflows/update-status-chart.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout gh-pages
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
with:
1919
ref: gh-pages
2020
- name: Setup Node.js
21-
uses: actions/setup-node@v4
21+
uses: actions/setup-node@v6
2222
with:
23-
node-version: ">=23.9.0"
23+
node-version: ">=25.2.1"
2424
- name: Install Packages
2525
run: |
2626
npm ci

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ cmake_minimum_required(VERSION 4.1.1)
66
set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY)
77
project(msvc_standard_libraries LANGUAGES CXX)
88

9-
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "19.50.35702")
10-
message(FATAL_ERROR "The STL must be built with MSVC Compiler 19.50.35702 or later.")
9+
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "19.50.35717")
10+
message(FATAL_ERROR "The STL must be built with MSVC Compiler 19.50.35717 or later.")
1111
endif()
1212

1313
include(CheckCXXSourceCompiles)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,12 +145,12 @@ Just try to follow these rules, so we can spend more time fixing bugs and implem
145145
+ **You must install Insiders for STL development.** *See Note 1 below.*
146146
+ Select the "Desktop development with C++" workload.
147147
+ Select the following components at a minimum:
148-
- "MSVC v145 - C++ x64/x86 build tools (Latest)"
148+
- "MSVC Build Tools for x64/x86 (Latest)"
149149
- "C++ CMake tools for Windows"
150-
- "C++ AddressSanitizer"
150+
- "MSVC AddressSanitizer"
151151
- "Windows 11 SDK (10.0.26100)" or later
152152
- "C++ Clang tools for Windows (20.1.8 - x64/x86)"
153-
- *Optional, see Note 2 below:* "MSVC v145 - C++ ARM64/ARM64EC build tools (Latest)"
153+
- *Optional, see Note 2 below:* "MSVC Build Tools for ARM64/ARM64EC (Latest)"
154154
* Install [Python][] 3.14.0 or later.
155155
+ Select "Add python.exe to PATH" if you want to follow the instructions below that invoke `python`.
156156
Otherwise, you should be familiar with alternative methods.

azure-devops/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
variables:
77
- name: poolName
8-
value: 'Stl-2025-10-14T1635-x64-Pool'
8+
value: 'Stl-2025-11-17T2154-x64-Pool'
99
readonly: true
1010
- name: arm64PoolName
11-
value: 'Stl-2025-10-27T1519-arm64-Pool'
11+
value: 'Stl-2025-11-17T2237-arm64-Pool'
1212
readonly: true
1313
- name: poolDemands
1414
value: 'EnableSpotVM -equals false'

azure-devops/create-1es-hosted-pool.ps1

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,17 @@ $ErrorActionPreference = 'Stop'
2121
$CurrentDate = Get-Date
2222
$Timestamp = $CurrentDate.ToString('yyyy-MM-ddTHHmm')
2323

24-
$Location = 'eastus2'
25-
2624
if ($Arch -ieq 'x64') {
25+
$Location = 'eastus2'
2726
$VMSize = 'Standard_F32as_v6'
2827
$PoolSize = 64
2928
$ImagePublisher = 'MicrosoftWindowsServer'
3029
$ImageOffer = 'WindowsServer'
3130
$ImageSku = '2025-datacenter-azure-edition'
3231
} else {
32+
$AvailableLocations = @('eastus2', 'northeurope') # Locations where CPP_STL_GitHub has obtained sufficient quota.
33+
$AvailableLocationIdx = 1 # Increment for each new pool, to cycle through the available locations.
34+
$Location = $AvailableLocations[$AvailableLocationIdx % $AvailableLocations.Length]
3335
$VMSize = 'Standard_D32ps_v6'
3436
$PoolSize = 32
3537
$ImageId = '/SharedGalleries/WindowsServer.1P/Images/2025-datacenter-azure-edition-arm64/Versions/latest'

0 commit comments

Comments
 (0)