From 99f2fb5527a964b254b40692f9e95466e2a040f8 Mon Sep 17 00:00:00 2001 From: Erik Fasterius Date: Fri, 25 Oct 2024 14:25:47 +0200 Subject: [PATCH] Fix test profile resource limits The `spaceranger/count` module stalled during GHA CI tests due to some issue with the new template resource specifications for the test profile. The new template specifies 15 GB of RAM, but the GHA runner only had 13.6 available, which somehow lead to a stall of the task until the time ran out. Setting a slightly lower memory requirement fixes this. --- conf/test.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/test.config b/conf/test.config index 3596a95..eed0d19 100644 --- a/conf/test.config +++ b/conf/test.config @@ -13,7 +13,7 @@ process { resourceLimits = [ cpus: 4, - memory: '15.GB', + memory: '12.GB', time: '1.h' ] }