Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,13 @@ on:
branches: [main]
paths-ignore:
- CODEOWNERS
- requirements.txt
- LICENSE.txt
- .pre-commit-config.yaml
- "**/*.md"
pull_request:
branches: [main]
paths-ignore:
- CODEOWNERS
- requirements.txt
- LICENSE.txt
- .pre-commit-config.yaml
- "**/*.md"
Expand Down
43 changes: 43 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,19 @@ jobs:
},
lib: "libstdc++14",
}
- {
name: "Ubuntu GCC-15",
os: ubuntu-24.04,
compiler:
{
type: GCC,
version: 15,
cc: "gcc-15",
cxx: "g++-15",
std: 20,
},
lib: "libstdc++15",
}
- {
name: "Ubuntu Clang-17 + libc++",
os: ubuntu-24.04,
Expand Down Expand Up @@ -122,6 +135,19 @@ jobs:
},
lib: "libc++19",
}
- {
name: "Ubuntu Clang-20 + libc++",
os: ubuntu-24.04,
compiler:
{
type: CLANG,
version: 20,
cc: "clang-20",
cxx: "clang++-20",
std: 20,
},
lib: "libc++20",
}
- {
name: "Visual Studio 2019",
os: windows-latest,
Expand All @@ -142,6 +168,11 @@ jobs:
os: windows-latest,
compiler: { type: VISUAL, version: 19, cc: "cl", cxx: "cl" },
}
- {
name: "Visual Studio 2022 v20",
os: windows-latest,
compiler: { type: VISUAL, version: 20, cc: "cl", cxx: "cl", std: 20 },
Copy link

Copilot AI Nov 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The std: 20 field is inconsistent with other Visual Studio entries (v16, v17, v18, v19) which don't include this field. For consistency with the existing pattern, either remove this field from the v20 entry or add it to all other Visual Studio entries. The field appears to not be used by the workflow steps, as the CMake configuration is handled by presets.

Suggested change
compiler: { type: VISUAL, version: 20, cc: "cl", cxx: "cl", std: 20 },
compiler: { type: VISUAL, version: 20, cc: "cl", cxx: "cl" },

Copilot uses AI. Check for mistakes.
}
- {
name: "MacOS Apple Clang 15",
os: macos-14,
Expand All @@ -154,6 +185,18 @@ jobs:
std: 20,
},
}
- {
name: "MacOS Apple Clang 16",
os: macos-14,
compiler:
{
type: APPLE_CLANG,
version: "16.0",
cc: "clang",
cxx: "clang++",
std: 20,
},
}
steps:
- uses: actions/checkout@v4
- uses: seanmiddleditch/gha-setup-ninja@master
Expand Down
Loading