From 3974806e5af0b5eb7c6449360010dbebcbefbc7e Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 31 Jul 2023 12:48:12 +0930 Subject: [PATCH] CI: Try not running group 2/10 UBSAN in parallel. It's being killed with signal 143, which means docker isn't happy; too much memory consumption? Signed-off-by: Rusty Russell --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3f1d59e9b..47ccd1906 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -401,7 +401,7 @@ jobs: - NAME: ASan/UBSan (01/10) PYTEST_OPTS: --test-group=1 --test-group-count=10 - NAME: ASan/UBSan (02/10) - PYTEST_OPTS: --test-group=2 --test-group-count=10 + PYTEST_OPTS: --test-group=2 --test-group-count=10 -n 1 - NAME: ASan/UBSan (03/10) PYTEST_OPTS: --test-group=3 --test-group-count=10 - NAME: ASan/UBSan (04/10)