Skip to content

Commit

Permalink
Merge pull request #3255 from mahesh-panchal/add_gitpod_resource_limits
Browse files Browse the repository at this point in the history
Template: Add resource limits to Gitpod profile
  • Loading branch information
mashehu authored Oct 31, 2024
2 parents dc9c1d1 + fc778f3 commit 04bbf4a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Fix Manifest DOI text ([#3224](https://github.com/nf-core/tools/pull/3224))
- Do not assume pipeline name is url ([#3225](https://github.com/nf-core/tools/pull/3225))
- fix worklfow_dispatch trigger and parse more review comments in awsfulltest ([#3235](https://github.com/nf-core/tools/pull/3235))
- Add resource limits to Gitpod profile([#3255](https://github.com/nf-core/tools/pull/3255))

### Download

Expand Down
7 changes: 7 additions & 0 deletions nf_core/pipeline-template/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,13 @@ profiles {
executor.name = 'local'
executor.cpus = 4
executor.memory = 8.GB
process {
resourceLimits = [
memory: 8.GB,
cpus : 4,
time : 1.h
]
}
}
{%- endif %}
{% if test_config -%}
Expand Down

0 comments on commit 04bbf4a

Please sign in to comment.