Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ Just try to follow these rules, so we can spend more time fixing bugs and implem
The STL uses boost-math headers to provide P0226R1 Mathematical Special Functions. We recommend using [vcpkg][] to
acquire this dependency.

1. Install Visual Studio 2019 16.10 Preview 4 or later.
1. Install Visual Studio 2019 16.11 Preview 1 or later.
* We recommend selecting "C++ CMake tools for Windows" in the VS Installer.
This will ensure that you're using supported versions of CMake and Ninja.
* Otherwise, install [CMake][] 3.20 or later, and [Ninja][] 1.10.2 or later.
Expand All @@ -158,7 +158,7 @@ acquire this dependency.

# How To Build With A Native Tools Command Prompt

1. Install Visual Studio 2019 16.10 Preview 4 or later.
1. Install Visual Studio 2019 16.11 Preview 1 or later.
* We recommend selecting "C++ CMake tools for Windows" in the VS Installer.
This will ensure that you're using supported versions of CMake and Ninja.
* Otherwise, install [CMake][] 3.20 or later, and [Ninja][] 1.10.2 or later.
Expand Down
4 changes: 3 additions & 1 deletion azure-devops/create-vmss.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $ProtoVMName = 'PROTOTYPE'
$LiveVMPrefix = 'BUILD'
$ImagePublisher = 'MicrosoftWindowsDesktop'
$ImageOffer = 'Windows-10'
$ImageSku = '20h2-ent-g2'
$ImageSku = '21h1-ent-g2'

$ProgressActivity = 'Creating Scale Set'
$TotalProgress = 14
Expand Down Expand Up @@ -310,6 +310,8 @@ Write-Progress `
-Status 'Sleeping after restart' `
-PercentComplete (100 / $TotalProgress * $CurrentProgress++)

# The VM appears to be busy immediately after restarting.
# This workaround waits for a minute before attempting to run sysprep.ps1.
Start-Sleep -Seconds 60

####################################################################################################
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ variables:
buildOutputLocation: 'D:\build'
vcpkgLocation: '$(Build.SourcesDirectory)/vcpkg'

pool: 'StlBuild-2021-05-18'
pool: 'StlBuild-2021-06-02'

stages:
- stage: Code_Format
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/stl/test/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def _parseFlags(self):
if flag[5:] == 'c++latest':
self._addCustomFeature('c++2a')
elif flag[5:] == 'c++20':
self.requires.append('unsupported_potato') # TRANSITION, VS2019 Preview 16.11
self._addCustomFeature('c++2a')
elif flag[5:] == 'c++17':
self._addCustomFeature('c++17')
elif flag[5:] == 'c++14':
Expand Down