From c2672c069bf3757a3deef7e7157bdbac4e595836 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Wed, 19 Mar 2025 13:54:46 +0100 Subject: [PATCH] build: disable apple-clang-15 builds until the crash is fixed --- .github/generate-job-matrix.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/generate-job-matrix.py b/.github/generate-job-matrix.py index 4c387a14..83e4f362 100644 --- a/.github/generate-job-matrix.py +++ b/.github/generate-job-matrix.py @@ -97,10 +97,11 @@ configs = { # arm64 runners are expensive; only consider one version if ver == 18 or platform != "arm64" ] - + [ - make_apple_clang_config("macos-13", ver, std_format_support=False) - for ver in ["15.2"] - ] + # TODO uncomment the below when apple-clang-15 crash is fixed + # + [ + # make_apple_clang_config("macos-13", ver, std_format_support=False) + # for ver in ["15.2"] + # ] # std::format is available in Xcode 16.1 or later + [ make_apple_clang_config("macos-14", ver, std_format_support=True)