We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0974ea commit e657c7fCopy full SHA for e657c7f
.github/workflows/coverage.yml
@@ -14,7 +14,7 @@ jobs:
14
fail-fast: false
15
matrix:
16
config: [
17
- {os: ubuntu-24.04, compiler_name: gcc, c_compiler: gcc-13, cxx_compiler: g++-13}
+ {os: ubuntu-24.04, compiler_name: gcc, c_compiler: gcc-14, cxx_compiler: g++-14}
18
]
19
name: ${{matrix.config.os}} - ${{matrix.config.compiler_name}} - coverage
20
runs-on: ${{matrix.config.os}}
.github/workflows/macos.yml
@@ -13,18 +13,11 @@ jobs:
13
- # {os: macos-13, xcode: 14.1},
- # {os: macos-13, xcode: 14.2},
- {os: macos-13, xcode: 14.3.1},
- # {os: macos-13, xcode: 15.0.1},
- # {os: macos-13, xcode: 15.1},
21
- {os: macos-13, xcode: 15.2},
22
- # {os: macos-14, xcode: 14.3.1},
23
- # {os: macos-14, xcode: 15.0.1},
24
- # {os: macos-14, xcode: 15.1},
25
- # {os: macos-14, xcode: 15.2},
26
- # {os: macos-14, xcode: 15.3},
27
{os: macos-14, xcode: 15.4},
+ {os: macos-14, xcode: 16.2},
+ {os: macos-15, xcode: 16.4},
+ {os: macos-15, xcode: 26.2},
+ {os: macos-26, xcode: 26.2},
28
29
build_type: [Debug, Release, Sanitize]
30
name: ${{matrix.config.os}} - Xcode ${{matrix.config.xcode}} - ${{matrix.build_type}}
.github/workflows/ubuntu.yml
@@ -14,10 +14,6 @@ jobs:
- {os: ubuntu-20.04, compiler_name: gcc-10, c_compiler: gcc-10, cxx_compiler: g++-10},
- {os: ubuntu-20.04, compiler_name: clang-10, c_compiler: clang-10, cxx_compiler: clang++-10},
- {os: ubuntu-20.04, compiler_name: clang-11, c_compiler: clang-11, cxx_compiler: clang++-11},
- {os: ubuntu-20.04, compiler_name: clang-12, c_compiler: clang-12, cxx_compiler: clang++-12},
{os: ubuntu-22.04, compiler_name: gcc-10, c_compiler: gcc-10, cxx_compiler: g++-10},
{os: ubuntu-22.04, compiler_name: gcc-11, c_compiler: gcc-11, cxx_compiler: g++-11},
{os: ubuntu-22.04, compiler_name: gcc-12, c_compiler: gcc-12, cxx_compiler: g++-12},
.github/workflows/windows-msvc.yml
@@ -16,7 +16,9 @@ jobs:
{os: windows-2019, generator: "Visual Studio 16 2019", generator_short: VS2019, toolset: v142},
{os: windows-2019, generator: "Visual Studio 16 2019", generator_short: VS2019, toolset: ClangCL},
{os: windows-2022, generator: "Visual Studio 17 2022", generator_short: VS2022, toolset: v143},
- {os: windows-2022, generator: "Visual Studio 17 2022", generator_short: VS2022, toolset: ClangCL}
+ {os: windows-2022, generator: "Visual Studio 17 2022", generator_short: VS2022, toolset: ClangCL},
+ {os: windows-2025, generator: "Visual Studio 17 2022", generator_short: VS2022, toolset: v143},
+ {os: windows-2025, generator: "Visual Studio 17 2022", generator_short: VS2022, toolset: ClangCL},
architecture: [Win32, x64]
build_type: [Debug, Release]
.github/workflows/windows-msys2.yml
@@ -13,8 +13,8 @@ jobs:
strategy:
- os: [windows-2019, windows-2022]
- sys: [mingw64, mingw32, clang64, clang32, ucrt64]
+ os: [windows-2019, windows-2022, windows-2025]
+ sys: [mingw64, mingw32, clang64, ucrt64]
name: ${{matrix.os}} - ${{matrix.sys}} - ${{matrix.build_type}}
runs-on: ${{matrix.os}}
0 commit comments