diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-12-15 20:10:48 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-12-15 20:19:56 +0300 |
commit | d021eae1cf9806282745935391a5ca282f4b5999 (patch) | |
tree | 11f7eaf21628681296559ad97777405377386cde /.github/workflows/msvc_versions.yml | |
parent | v3.3 (diff) | |
download | cmake-common-d021eae1cf9806282745935391a5ca282f4b5999.tar.gz cmake-common-d021eae1cf9806282745935391a5ca282f4b5999.zip |
support VS 2022
Diffstat (limited to '.github/workflows/msvc_versions.yml')
-rw-r--r-- | .github/workflows/msvc_versions.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/msvc_versions.yml b/.github/workflows/msvc_versions.yml index 91d49c9..c1b2700 100644 --- a/.github/workflows/msvc_versions.yml +++ b/.github/workflows/msvc_versions.yml @@ -16,21 +16,25 @@ jobs: - msvc140 - msvc141 - msvc142 + - msvc143 - vs2015 - vs2017 - vs2019 + - vs2022 include: # Runner image. - {toolset: msvc140, os: windows-2016} - {toolset: msvc141, os: windows-2016} - {toolset: msvc142, os: windows-2019} + - {toolset: msvc143, os: windows-2022} - {toolset: vs2015, os: windows-2016} - {toolset: vs2017, os: windows-2016} - {toolset: vs2019, os: windows-2019} + - {toolset: vs2022, os: windows-2022} # Boost version. - - boost-version: 1.72.0 + - boost-version: 1.78.0 # Some Boost libraries commonly used by me. - libraries: filesystem program_options regex system test |