aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-05-16 02:21:55 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-05-16 02:27:32 +0300
commit500af6ae939b70ae19730272619cccbb010fb29d (patch)
treef000fe2471df198734916421ce1eb7b80cbe846f
parentProcess: import pdb::Process from winapi-debug (diff)
downloadwinapi-common-500af6ae939b70ae19730272619cccbb010fb29d.tar.gz
winapi-common-500af6ae939b70ae19730272619cccbb010fb29d.zip
workflows/ci: use more recent Boost w/ VS 2019
-rw-r--r--.github/workflows/ci.yml9
1 files 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