From a6de416488b9511b4e21051ab606d345a8baf89d Mon Sep 17 00:00:00 2001 From: Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> Date: Sun, 18 Aug 2024 12:16:59 -0500 Subject: [PATCH] Oops --- ci/unittest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/unittest.py b/ci/unittest.py index f395730..5919198 100644 --- a/ci/unittest.py +++ b/ci/unittest.py @@ -88,6 +88,7 @@ def build_and_test(runner: MatrixRunner): if ( last is None or last["compiler"] != current["compiler"] + or last["stdlib"] != current["stdlib"] or (platform.system() == "Darwin" and last["sanitizers"] != current["sanitizers"]) ) and os.path.exists("build"): shutil.rmtree("build", ignore_errors=True) @@ -120,7 +121,7 @@ def run_linux_matrix(): exclude = [ { "compiler": "g++-10", - "sanitizers": "libc++", + "stdlib": "libc++", } ] ).run(build_and_test)