Skip to content
Open
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
10 changes: 9 additions & 1 deletion rose-stem/flow.cylc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,15 @@
{% endif %}
{% do LOG.info("Site: " + SITE) %}

{% set SOURCE_DIRECTORY = ROSE_ORIG_HOST~":"~CYLC_WORKFLOW_SRC_DIR~"/.." %}
{# Do not include rose orig host at some sites as you may trip up with ssh keys #}
{# Far easier to just rsync without a hostname and copy the files directly #}
{% if SITE == 'jasmin' %}
{% set SOURCE_DIRECTORY = CYLC_WORKFLOW_SRC_DIR~"/.." %}
{% else %}
{% set SOURCE_DIRECTORY = ROSE_ORIG_HOST~":"~CYLC_WORKFLOW_SRC_DIR~"/.." %}
{% endif %}


{# Include log message for suite_report #}
{% do LOG.info("JULES SOURCE CLONE="~SOURCE_DIRECTORY) %}

Expand Down
15 changes: 8 additions & 7 deletions rose-stem/include/jasmin/runtime.cylc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# (normally found in runtime-common.cylc, Done to enforce loading of
# Python 3 on JASMIN which is required by UMDP3 checker)
[[SCRIPTS]]
env-script = "module load jaspy/3.7/r20210320"
env-script = "module load jaspy"

{% if REMOTE_JASMIN %}
[[REMOTE]]
Expand Down Expand Up @@ -55,17 +55,18 @@
execution time limit = PT2M

[[extract_source]]
inherit = SOURCE_EXTRACTION, JASMIN_LOTUS
inherit = SOURCE_EXTRACTION

[[JASMIN_FCM_MAKE]]
inherit = None, JASMIN_LOTUS, EXTRACT
[[[environment]]]
JULES_PLATFORM = jasmin-lotus-intel
{% if REMOTE_JASMIN %}
JULES_SOURCE = {{ REMOTE_JULES_SOURCE }}
{% else %}
JULES_SOURCE = {{ SOURCE_JULES }}
{% endif %}
JULES_SOURCE = ${CYLC_SUITE_SHARE_DIR}/source/jules
{# {% if REMOTE_JASMIN %} #}
{# JULES_SOURCE = {{ REMOTE_JULES_SOURCE }} #}
{# {% else %} #}
{# JULES_SOURCE = {{ SOURCE_JULES }} #}
{# {% endif %} #}
[[[job]]]
execution time limit = PT20M
[[[directives]]]
Expand Down