From cdf800489744e45b8b448cc94b2cb48eac870cfd Mon Sep 17 00:00:00 2001 From: Edward Nolan Date: Thu, 17 Sep 2026 21:05:12 +0000 Subject: [PATCH] Add Clang 23 to CI Move the full Clang test matrix (all C++ standards, libstdc++ and libc++, sanitizers and Werror) from Clang 22 to Clang 23, and demote Clang 22 to the Release.Default-only tier alongside Clang 21-19. The supported platforms table in README.md was regenerated with beman-readme-platforms. The regenerated table also drops GCC 15 from the GCC row, since GCC 15 is not in the CI matrix; the previous README was stale. Verified locally with beman-local-ci --compiler clang --versions 23: 14 passed, 0 failed. Co-Authored-By: Claude Fable 5.1 --- .github/workflows/ci_tests.yml | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index 3e8ce19..eff159f 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -71,7 +71,7 @@ jobs: } ], "clang": [ - { "versions": ["22"], + { "versions": ["23"], "tests": [ {"cxxversions": ["c++26"], "tests": [ @@ -90,7 +90,7 @@ jobs: } ] }, - { "versions": ["21", "20", "19"], + { "versions": ["22", "21", "20", "19"], "tests": [ { "cxxversions": ["c++26", "c++23", "c++20"], "tests": [ diff --git a/README.md b/README.md index 327c0a5..c249f14 100644 --- a/README.md +++ b/README.md @@ -140,9 +140,9 @@ You can disable building examples by setting CMake option `BEMAN_ITERATOR_INTERF | Compiler | Version | C++ Standards | Standard Library | |----------|---------|---------------|-------------------| -| GCC | 15-13 | C++26-C++20 | libstdc++ | +| GCC | 14-13 | C++26-C++20 | libstdc++ | | GCC | 12 | C++23, C++20 | libstdc++ | -| Clang | 22-19 | C++26-C++20 | libstdc++, libc++ | +| Clang | 23-19 | C++26-C++20 | libstdc++, libc++ | | Clang | 18 | C++26-C++20 | libc++ | | Clang | 18 | C++23, C++20 | libstdc++ | | Clang | 17 | C++26-C++20 | libc++ |