Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/translators_loggers/Dockerfile.streamflow
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ RUN apt-get -y install stress-ng

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

# Add wfcommons user
RUN useradd -ms /bin/bash wfcommons
Expand Down
2 changes: 0 additions & 2 deletions wfcommons/wfbench/translator/templates/cwl/shell.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ arguments:
}
}
cmd = cmd + " > " + runtime.outdir + "/" + inputs.step_name + ".out 2> " + runtime.outdir + "/" + inputs.step_name + ".err";
cmd = cmd + " ; echo '-- end of stdout for " + inputs.step_name + " --' >> " + runtime.outdir + "/" + inputs.step_name + ".out";
cmd = cmd + " ; echo '-- end of stderr for " + inputs.step_name + " --' >> " + runtime.outdir + "/" + inputs.step_name + ".err";
return cmd;
}
shellQuote: false
Expand Down