aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-01-02 12:51:13 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-01-02 12:51:13 +0100
commit25edcffd0e69fd521db0c2fb87cf9400f508af48 (patch)
treed686602b5df4ce508558aaf41f79be1f25d9f8b1 /.github/workflows
parentworkflows/ci: upgrade actions (diff)
downloadwinapi-debug-25edcffd0e69fd521db0c2fb87cf9400f508af48.tar.gz
winapi-debug-25edcffd0e69fd521db0c2fb87cf9400f508af48.zip
workflows/ci: add VS 2022 builds
This includes bumping the Boost version, because windows-2022 runners can no longer build older releases.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 82f63fe..dd96114 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -21,15 +21,16 @@ jobs:
build:
strategy:
matrix:
- toolset: [mingw, vs2019]
+ toolset: [mingw, vs2019, vs2022]
platform: [x64, x86]
configuration: [Debug, RelWithDebInfo]
include:
- - boost-version: 1.72.0
+ - boost-version: 1.81.0
# MinGW builds are done on Linux, since it's more up-to-date there,
# and it's much faster.
- {toolset: mingw, os: ubuntu-latest}
- {toolset: vs2019, os: windows-2019}
+ - {toolset: vs2022, os: windows-2022}
runs-on: '${{ matrix.os }}'
name: 'Build: ${{ matrix.toolset }} / ${{ matrix.platform }} / ${{ matrix.configuration }}'
defaults: