This is an automated email from the ASF dual-hosted git repository.
bneradt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 6d36c38b9c ci-fedora-cxx20 preset: use clang (#13477)
6d36c38b9c is described below
commit 6d36c38b9cf1ab9c520bd7e9cc73db47323affa2
Author: Brian Neradt <[email protected]>
AuthorDate: Mon Aug 3 18:59:48 2026 -0500
ci-fedora-cxx20 preset: use clang (#13477)
Our autest fedora run exercises g++, let's get some recent clang
coverage via the fedora CI run.
---
CMakePresets.json | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/CMakePresets.json b/CMakePresets.json
index a4eff644ea..68bbb2d4e4 100644
--- a/CMakePresets.json
+++ b/CMakePresets.json
@@ -201,7 +201,9 @@
"description": "CI Pipeline config for Fedora Linux compiled with c++20",
"inherits": ["ci-fedora"],
"cacheVariables": {
- "CMAKE_CXX_STANDARD": "20"
+ "CMAKE_CXX_STANDARD": "20",
+ "CMAKE_C_COMPILER": "clang",
+ "CMAKE_CXX_COMPILER": "clang++"
}
},
{