From 500af6ae939b70ae19730272619cccbb010fb29d Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 16 May 2021 02:21:55 +0300 Subject: workflows/ci: use more recent Boost w/ VS 2019 --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3be4d30..6cf684a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,16 +24,17 @@ jobs: build: strategy: matrix: - toolset: [mingw, vs2015, vs2017, vs] + toolset: [mingw, vs2015, vs2017, vs2019] platform: [x64, x86] configuration: [Debug, RelWithDebInfo] include: + - boost-version: 1.65.0 # MinGW builds are done on Linux, since it's more up-to-date there, # and it's much faster. - - {toolset: mingw, os: ubuntu-20.04} + - {toolset: mingw, os: ubuntu-20.04} - {toolset: vs2015, os: windows-2016} - {toolset: vs2017, os: windows-2016} - - {toolset: vs, os: windows-2019} + - {toolset: vs2019, os: windows-2019, boost-version: 1.72.0} runs-on: '${{ matrix.os }}' name: 'Build: ${{ matrix.toolset }} / ${{ matrix.platform }} / ${{ matrix.configuration }}' defaults: @@ -43,7 +44,7 @@ jobs: TOOLSET: '${{ matrix.toolset }}' PLATFORM: '${{ matrix.platform }}' CONFIGURATION: '${{ matrix.configuration }}' - BOOST_VERSION: 1.65.0 + BOOST_VERSION: '${{ matrix.boost-version }}' CMAKE_FLAGS: -D WINAPI_COMMON_TESTS=ON steps: - name: Checkout -- cgit v1.2.3