From 5715229463b1e6e0bf1fd25b0521436ffe0bded4 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 7 Jan 2022 01:21:34 +0300 Subject: workflows: reduce number of jobs further --- .github/workflows/boost_toolsets.yml | 8 ++++++++ .github/workflows/example_toolsets.yml | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/.github/workflows/boost_toolsets.yml b/.github/workflows/boost_toolsets.yml index 3259284..2a5dbf9 100644 --- a/.github/workflows/boost_toolsets.yml +++ b/.github/workflows/boost_toolsets.yml @@ -47,6 +47,14 @@ jobs: # Ubuntu: no MSVC/clang-cl. - {os: ubuntu-latest, toolset: msvc} - {os: ubuntu-latest, toolset: clang-cl} + # Optimization: MinGW-w64 should be the same on different Windows + # versions. Clang on the other hand relies on the Microsoft linker + # (at least it did at some point), so it makes sense to test it + # against different Visual Studio versions. + - {os: windows-2016, toolset: gcc} + - {os: windows-2019, toolset: gcc} + - {os: windows-2016, toolset: mingw} + - {os: windows-2019, toolset: mingw} # clang-cl is only supported by Boost.Build since 1.69 (see the # boost_clang_windows.yml workflow). - {toolset: clang-cl, boost-version: 1.58.0} diff --git a/.github/workflows/example_toolsets.yml b/.github/workflows/example_toolsets.yml index b4f5fc7..dd6096f 100644 --- a/.github/workflows/example_toolsets.yml +++ b/.github/workflows/example_toolsets.yml @@ -53,6 +53,14 @@ jobs: # Ubuntu: no MSVC/clang-cl. - {os: ubuntu-latest, toolset: msvc} - {os: ubuntu-latest, toolset: clang-cl} + # Optimization: MinGW-w64 should be the same on different Windows + # versions. Clang on the other hand relies on the Microsoft linker + # (at least it did at some point), so it makes sense to test it + # against different Visual Studio versions. + - {os: windows-2016, toolset: gcc} + - {os: windows-2019, toolset: gcc} + - {os: windows-2016, toolset: mingw} + - {os: windows-2019, toolset: mingw} runs-on: '${{ matrix.os }}' -- cgit v1.2.3