From eb510f8678ba2e5f2c2fad2a8b086ce93293de1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C5=91rinc?= Date: Tue, 3 Feb 2026 17:46:03 +0100 Subject: [PATCH] ci: fail fast in test-each-commit script Pass `--failfast` to the functional test runner in `.github/ci-test-each-commit-exec.py`. Stop after the first failure to surface the root cause sooner and keep logs readable when testing ancestor commits. Co-authored-by: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> --- .github/ci-test-each-commit-exec.py | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ci-test-each-commit-exec.py b/.github/ci-test-each-commit-exec.py index fcd3bbdb546..66334b83c8b 100755 --- a/.github/ci-test-each-commit-exec.py +++ b/.github/ci-test-each-commit-exec.py @@ -62,6 +62,7 @@ def main(): f"./{build_dir}/test/functional/test_runner.py", "-j", str(num_procs * 2), + "--failfast", "--combinedlogslen=99999999", ])