This is an automated email from the ASF dual-hosted git repository. cmcfarlen pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/trafficserver.git
commit a5e5977f2afb898513c5dcdfa4829caa74ea1e3f Author: Brian Neradt <[email protected]> AuthorDate: Tue Jun 16 09:41:09 2026 -0500 Enable probes in Fedora C++20 CI (#13280) Fedora CI runs the C++20 preset rather than the base Fedora preset, so probe coverage drifted out of that build even though ci-fedora had the option enabled. This makes the C++20 preset inherit the Fedora preset and keeps only the C++ standard override locally, so shared Fedora CI settings stay in one place. (cherry picked from commit 08470e9a6baac67d4f85620a221becc7bbe9a312) --- CMakePresets.json | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/CMakePresets.json b/CMakePresets.json index 83db961a8f..2bf61df396 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -187,13 +187,9 @@ "name": "ci-fedora-cxx20", "displayName": "CI Fedora c++20", "description": "CI Pipeline config for Fedora Linux compiled with c++20", - "inherits": ["ci"], + "inherits": ["ci-fedora"], "cacheVariables": { - "opentelemetry_ROOT": "/opt", - "CURL_ROOT": "/opt", - "wamr_ROOT": "/opt", - "CMAKE_CXX_STANDARD": "20", - "ENABLE_CRIPTS": "ON" + "CMAKE_CXX_STANDARD": "20" } }, { @@ -431,4 +427,3 @@ } ] } -
