Skip to content

Commit

Permalink
ci: downgrade task attempt memory
Browse files Browse the repository at this point in the history
  • Loading branch information
kelly-sovacool committed Sep 7, 2023
1 parent f04e7a3 commit a777395
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conf/modules.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

// additional process directives are in conf/production.config
process {

publishDir = [
Expand All @@ -8,7 +8,7 @@ process {
]

cpus = { check_max( 1 * task.attempt, 'cpus' ) }
memory = { check_max( 7.GB * task.attempt, 'memory' ) }
memory = { check_max( 6.8.GB * task.attempt, 'memory' ) }
time = { check_max( 4.h * task.attempt, 'time' ) }
errorStrategy = 'finish'

Expand Down

0 comments on commit a777395

Please sign in to comment.