Oops
This commit is contained in:
parent
e5468af14e
commit
a6de416488
@ -88,6 +88,7 @@ def build_and_test(runner: MatrixRunner):
|
|||||||
if (
|
if (
|
||||||
last is None
|
last is None
|
||||||
or last["compiler"] != current["compiler"]
|
or last["compiler"] != current["compiler"]
|
||||||
|
or last["stdlib"] != current["stdlib"]
|
||||||
or (platform.system() == "Darwin" and last["sanitizers"] != current["sanitizers"])
|
or (platform.system() == "Darwin" and last["sanitizers"] != current["sanitizers"])
|
||||||
) and os.path.exists("build"):
|
) and os.path.exists("build"):
|
||||||
shutil.rmtree("build", ignore_errors=True)
|
shutil.rmtree("build", ignore_errors=True)
|
||||||
@ -120,7 +121,7 @@ def run_linux_matrix():
|
|||||||
exclude = [
|
exclude = [
|
||||||
{
|
{
|
||||||
"compiler": "g++-10",
|
"compiler": "g++-10",
|
||||||
"sanitizers": "libc++",
|
"stdlib": "libc++",
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
).run(build_and_test)
|
).run(build_and_test)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user