Skip to content

Commit 04bbf4a

Browse files
authored
Merge pull request #3255 from mahesh-panchal/add_gitpod_resource_limits
Template: Add resource limits to Gitpod profile
2 parents dc9c1d1 + fc778f3 commit 04bbf4a

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- Fix Manifest DOI text ([#3224](https://github.com/nf-core/tools/pull/3224))
99
- Do not assume pipeline name is url ([#3225](https://github.com/nf-core/tools/pull/3225))
1010
- fix worklfow_dispatch trigger and parse more review comments in awsfulltest ([#3235](https://github.com/nf-core/tools/pull/3235))
11+
- Add resource limits to Gitpod profile([#3255](https://github.com/nf-core/tools/pull/3255))
1112

1213
### Download
1314

nf_core/pipeline-template/nextflow.config

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,13 @@ profiles {
178178
executor.name = 'local'
179179
executor.cpus = 4
180180
executor.memory = 8.GB
181+
process {
182+
resourceLimits = [
183+
memory: 8.GB,
184+
cpus : 4,
185+
time : 1.h
186+
]
187+
}
181188
}
182189
{%- endif %}
183190
{% if test_config -%}

0 commit comments

Comments
 (0)