Skip to content

Commit

Permalink
Fix test profile resource limits
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
fasterius committed Oct 25, 2024
1 parent f3a218e commit 99f2fb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conf/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
process {
resourceLimits = [
cpus: 4,
memory: '15.GB',
memory: '12.GB',
time: '1.h'
]
}
Expand Down

0 comments on commit 99f2fb5

Please sign in to comment.