diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/boost_toolsets.yml | 8 | ||||
-rw-r--r-- | .github/workflows/example_toolsets.yml | 8 |
2 files changed, 16 insertions, 0 deletions
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 }}' |