aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-01-02 11:43:44 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-01-02 11:43:44 +0100
commitc089742dda8a0bab5e8aa407ac4100985941e8ba (patch)
treeba8c96a50cd7dff59926b60e4f814ccd772d0e21 /.github
parentworkflows/ci: upgrade actions (diff)
downloadmath-server-c089742dda8a0bab5e8aa407ac4100985941e8ba.tar.gz
math-server-c089742dda8a0bab5e8aa407ac4100985941e8ba.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')
-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 d1acbae..ece3b09 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -21,12 +21,13 @@ jobs:
build:
strategy:
matrix:
- toolset: [gcc, vs2019]
+ toolset: [gcc, vs2019, vs2022]
platform: [x64, x86]
configuration: [Debug, Release]
include:
- {toolset: gcc, os: ubuntu-latest}
- {toolset: vs2019, os: windows-2019}
+ - {toolset: vs2022, os: windows-2022}
exclude:
# 32-bit Linux builds, meh.
- {toolset: gcc, platform: x86}
@@ -36,7 +37,7 @@ jobs:
TOOLSET: '${{ matrix.toolset }}'
PLATFORM: '${{ matrix.platform }}'
CONFIGURATION: '${{ matrix.configuration }}'
- BOOST_VERSION: 1.71.0
+ BOOST_VERSION: 1.81.0
CMAKE_FLAGS: -D MATH_SERVER_TESTS=ON
defaults:
run: