Skip to content

Commit 8d79ec5

Browse files
committed
Increase memory for BWA index tests
1 parent 4983550 commit 8d79ec5

1 file changed

Lines changed: 9 additions & 7 deletions

File tree

tests/nextflow.config

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,17 @@
44
========================================================================================
55
*/
66

7-
// Limit resources so that this can run on GitHub Actions
7+
// Impose sensible resource limits for testing
88
process {
9-
resourceLimits = [
10-
cpus: 2,
11-
memory: '8.GB',
12-
time: '6.h'
13-
]
9+
withName: '.*' {
10+
cpus = 2
11+
memory = 6.GB
12+
time = 2.h
13+
}
14+
withName: 'BWA_INDEX' {
15+
memory = 16.GB
16+
}
1417
}
15-
1618
params {
1719
modules_testdata_base_path = 'https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/'
1820
pipelines_testdata_base_path = 'https://raw.githubusercontent.com/nf-core/test-datasets/refs/heads/chipseq'

0 commit comments

Comments
 (0)