ci: Use new Debian Trixie images (#6034)

This change uses the new Debian Trixie CI images added by XRPLF/ci#83.
This commit is contained in:
Bart
2025-11-17 14:31:19 -05:00
committed by GitHub
parent 2c187461cc
commit 77b7cef5a7
2 changed files with 39 additions and 11 deletions

View File

@@ -130,8 +130,8 @@ def generate_strategy_matrix(all: bool, config: Config) -> list:
if os['distro_name'] == 'rhel' and architecture['platform'] == 'linux/arm64':
continue
# We skip all clang-20 on arm64 due to boost 1.86 build error
if f'{os['compiler_name']}-{os['compiler_version']}' == 'clang-20' and architecture['platform'] == 'linux/arm64':
# 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':
continue
# Enable code coverage for Debian Bookworm using GCC 15 in Debug and no