From fa3e607c6dfb220684a65638b35ac5a4d3b1fcb7 Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Wed, 4 Feb 2026 10:22:35 +0100 Subject: [PATCH] ci: Print verbose Windows CI build failure --- .github/ci-windows.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ci-windows.py b/.github/ci-windows.py index 5d28ed0b855..d99ba2d97ec 100755 --- a/.github/ci-windows.py +++ b/.github/ci-windows.py @@ -61,12 +61,12 @@ def build(): "cmake", "--build", "build", - "-j", - str(os.process_cpu_count()), "--config", "Release", ] - run(command) + if run(command + ["-j", str(os.process_cpu_count())], check=False).returncode != 0: + print("Build failure. Verbose build follows.") + run(command + ["-j1", "--verbose"]) def main():