aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/example_toolsets.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/example_toolsets.yml')
-rw-r--r--.github/workflows/example_toolsets.yml8
1 files changed, 8 insertions, 0 deletions
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 }}'