diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 01:00:44 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 01:00:44 +0100 |
commit | 5b6ed8ee709d1ce58f8131c56588534fa8df782c (patch) | |
tree | 950bfa3bade986885c7785a6550d700307ab5834 /.github/workflows/ci.yml | |
parent | workflows/ci: publish docs to GitHub Pages (diff) | |
download | winapi-common-5b6ed8ee709d1ce58f8131c56588534fa8df782c.tar.gz winapi-common-5b6ed8ee709d1ce58f8131c56588534fa8df782c.zip |
workflows/ci: actualize runner OSes
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10daeee..893eea0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,17 +24,15 @@ jobs: build: strategy: matrix: - toolset: [mingw, vs2015, vs2017, vs2019] + toolset: [mingw, vs2019] platform: [x64, x86] configuration: [Debug, RelWithDebInfo] include: - - boost-version: 1.65.0 + - boost-version: 1.72.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: vs2015, os: windows-2016} - - {toolset: vs2017, os: windows-2016} - - {toolset: vs2019, os: windows-2019, boost-version: 1.72.0} + - {toolset: vs2019, os: windows-2019} runs-on: '${{ matrix.os }}' name: 'Build: ${{ matrix.toolset }} / ${{ matrix.platform }} / ${{ matrix.configuration }}' defaults: |