ci: Fix filtering out of Clang 20+ on ARM (#6046)

This change fixes the strategy matrix check to filter out the Clang 20+ on ARM, which still fail due to problems with Boost.
This commit is contained in:
Bart
2025-11-17 16:54:13 -05:00
committed by GitHub
parent 77b7cef5a7
commit 3fb6acd29e

View File

@@ -131,7 +131,7 @@ def generate_strategy_matrix(all: bool, config: Config) -> list:
continue
# We skip all clang 20+ on arm64 due to Boost build error.
if f'{os['compiler_name']}' in ['clang-20', 'clang-21'] and architecture['platform'] == 'linux/arm64':
if f'{os['compiler_name']}-{os['compiler_version']}' in ['clang-20', 'clang-21'] and architecture['platform'] == 'linux/arm64':
continue
# Enable code coverage for Debian Bookworm using GCC 15 in Debug and no