-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathreana.yaml
More file actions
31 lines (31 loc) · 830 Bytes
/
reana.yaml
File metadata and controls
31 lines (31 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
version: 0.6.0
inputs:
files:
- code/gendata.C
- code/fitdata.C
parameters:
events: 20000
data: results/data.root
plot: results/plot.png
workflow:
type: serial
specification:
steps:
- name: gendata
environment: "docker.io/reanahub/reana-env-root6:6.18.04"
kubernetes_memory_limit: "256Mi"
commands:
- mkdir -p results && root -b -q 'code/gendata.C(${events},"${data}")'
- name: fitdata
environment: "docker.io/reanahub/reana-env-root6:6.18.04"
kubernetes_memory_limit: "256Mi"
commands:
- root -b -q 'code/fitdata.C("${data}","${plot}")'
outputs:
files:
- results/plot.png
tests:
files:
- tests/serial/log-messages.feature
- tests/serial/run-duration.feature
- tests/serial/workspace-files.feature