Skip to content

Commit 9ff5f42

Browse files
committed
Simplified CWL translator a tiny bit now that the duplicate-file bug
has been fixed in Streamflow
1 parent 785f7d3 commit 9ff5f42

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/translators_loggers/Dockerfile.streamflow

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ RUN apt-get -y install stress-ng
4141

4242
# Streamflow
4343
RUN apt-get -y install nodejs
44-
RUN python3 -m pip install --break-system-packages streamflow==0.2.0.dev14
44+
#RUN python3 -m pip install --break-system-packages streamflow==0.2.0.dev15
45+
# For now, the above hasnt' been released yet, so we get a commit tag
46+
RUN git clone https://github.com/alpha-unito/streamflow.git && cd streamflow && git checkout 2295eda80ad37214d6f607f75f542b9eca03e121 && python3 -m pip install --break-system-packages .
4547

4648
# Add wfcommons user
4749
RUN useradd -ms /bin/bash wfcommons

wfcommons/wfbench/translator/templates/cwl/shell.cwl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ arguments:
1515
}
1616
}
1717
cmd = cmd + " > " + runtime.outdir + "/" + inputs.step_name + ".out 2> " + runtime.outdir + "/" + inputs.step_name + ".err";
18-
cmd = cmd + " ; echo '-- end of stdout for " + inputs.step_name + " --' >> " + runtime.outdir + "/" + inputs.step_name + ".out";
19-
cmd = cmd + " ; echo '-- end of stderr for " + inputs.step_name + " --' >> " + runtime.outdir + "/" + inputs.step_name + ".err";
2018
return cmd;
2119
}
2220
shellQuote: false

0 commit comments

Comments
 (0)