From a2f1812896587e23e46e9668fcb487498b28da67 Mon Sep 17 00:00:00 2001 From: Jeremy <51220084+jeremy-rifkin@users.noreply.github.com> Date: Sat, 13 Jul 2024 22:38:25 -0500 Subject: [PATCH] Disable configuration that's due to a libdwarf bug --- ci/unittest.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ci/unittest.py b/ci/unittest.py index d2dacbd..b2f0095 100644 --- a/ci/unittest.py +++ b/ci/unittest.py @@ -131,7 +131,14 @@ def run_macos_matrix(): { "compiler": "g++-12", "sanitizers": "ON", - } + }, + { + # disabled until https://github.com/davea42/libdwarf-code/issues/255 is fixed + "compiler": "clang++", + "sanitizers": "ON", + "build_type": "RelWithDebInfo", + "dSYM": True + }, ] ).run(build_and_test)