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.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/example_toolsets.yml b/.github/workflows/example_toolsets.yml
index a55c7b7..d98cfe0 100644
--- a/.github/workflows/example_toolsets.yml
+++ b/.github/workflows/example_toolsets.yml
@@ -15,10 +15,11 @@ jobs:
example: [simple, static, dynamic]
toolset: [auto, clang, clang-cl, gcc, mingw, msvc]
cygwin: [0, 1]
- os: [ubuntu-latest, windows-2016, windows-2019]
+ os: [ubuntu-latest, windows-2016, windows-2019, windows-2022]
include:
# Prettier run names.
+ - {os: windows-2022, name: Windows 2022}
- {os: windows-2019, name: Windows 2019}
- {os: windows-2016, name: Windows 2016}
- {os: ubuntu-latest, name: Ubuntu}
@@ -58,7 +59,8 @@ jobs:
# Cygwin: no MSVC/clang-cl.
- {cygwin: 1, toolset: msvc}
- {cygwin: 1, toolset: clang-cl}
- # Cygwin is the same on Windows Server 2016 & 2019.
+ # Cygwin is the same on different Windows versions.
+ - {os: windows-2019, cygwin: 1}
- {os: windows-2016, cygwin: 1}
runs-on: '${{ matrix.os }}'