From 15bb79b80d5d5a2ad3988d805a3eeb188f64d2d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tibor=20=C5=A0imko?= Date: Tue, 25 Feb 2020 14:24:29 +0100 Subject: [PATCH] reana: initial release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * A first simple version of `reana.yaml` enabling to run the analysis example on the REANA reproducible analysis platform. Using simple sequential workflow. Signed-off-by: Tibor Å imko --- reana.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 reana.yaml diff --git a/reana.yaml b/reana.yaml new file mode 100644 index 0000000..1786fa1 --- /dev/null +++ b/reana.yaml @@ -0,0 +1,19 @@ +version: 0.6.0 +inputs: + files: + - dimuonSpectrum.C +workflow: + type: serial + specification: + steps: + - name: compile + environment: reanahub/reana-env-root6:6.18.04 + commands: + - g++ -v -O3 -o dimuonSpectrum dimuonSpectrum.C `root-config --cflags --libs` + - name: run + environment: reanahub/reana-env-root6:6.18.04 + commands: + - ./dimuonSpectrum +outputs: + files: + - dimuonSpectrum.pdf