Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cwl_reana: add rucio support #233

Merged
merged 1 commit into from
Sep 15, 2022
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
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Authors
The list of contributors in alphabetical order:

- `Adelina Lintuluoto <https://orcid.org/0000-0002-0726-1452>`_
- `Agisilaos Kounelis <https://orcid.org/0000-0001-9312-3189>`_
- `Audrius Mecionis <https://orcid.org/0000-0002-3759-1663>`_
- `Anton Khodak <https://orcid.org/0000-0003-3263-4553>`_
- `Camila Diaz <https://orcid.org/0000-0001-5543-797X>`_
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Changes
Version 0.9.0 (UNRELEASED)
---------------------------

- Adds support for Rucio
- Adds support for propagating global Kerberos flag from workflow specification to each job.
- Adds support for specifying ``slurm_partition`` and ``slurm_time`` for Slurm compute backend jobs.
- Fixes failed jobs incorrectly reported as successful.
Expand Down
2 changes: 2 additions & 0 deletions reana_workflow_engine_cwl/cwl_reana.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,7 @@ def shouldquote(x):

unpacked_img = self._get_hint("unpacked_img")
voms_proxy = self._get_hint("voms_proxy")
rucio = self._get_hint("rucio")
htcondor_max_runtime = self._get_hint("htcondor_max_runtime")
htcondor_accounting_group = self._get_hint("htcondor_accounting_group")
slurm_partition = self._get_hint("slurm_partition")
Expand All @@ -281,6 +282,7 @@ def shouldquote(x):
"kerberos": kerberos,
"unpacked_img": unpacked_img,
"voms_proxy": voms_proxy,
"rucio": rucio,
"htcondor_max_runtime": htcondor_max_runtime,
"htcondor_accounting_group": htcondor_accounting_group,
"kubernetes_uid": kubernetes_uid,
Expand Down