Skip to content
Snippets Groups Projects
Commit 68acfa31 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Add fail process to configs

parent 04e986c0
Branches
Tags
2 merge requests!58Develop,!56Resolve "Detect error in inferMetadata for tracking"
Pipeline #8800 passed with stages
in 3 minutes and 2 seconds
...@@ -112,4 +112,8 @@ process { ...@@ -112,4 +112,8 @@ process {
cpus = 1 cpus = 1
memory = '1 GB' memory = '1 GB'
} }
withName:failExecutionRun {
cpus = 1
memory = '1 GB'
}
} }
...@@ -79,6 +79,9 @@ process { ...@@ -79,6 +79,9 @@ process {
withName:finalizeExecutionRun { withName:finalizeExecutionRun {
executor = 'local' executor = 'local'
} }
withName:failExecutionRun {
executor = 'local'
}
} }
singularity { singularity {
......
...@@ -88,6 +88,9 @@ process { ...@@ -88,6 +88,9 @@ process {
withName:finalizeExecutionRun { withName:finalizeExecutionRun {
container = 'gudmaprbk/deriva1.3:1.0.0' container = 'gudmaprbk/deriva1.3:1.0.0'
} }
withName:failExecutionRun {
container = 'gudmaprbk/deriva1.3:1.0.0'
}
} }
trace { trace {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment