Skip to content
Merged
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
3 changes: 3 additions & 0 deletions src/CSET/cset_workflow/flow.cylc
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,15 @@ final cycle point = {{CSET_TRIAL_END_DATE}}
# Runs for every forecast initiation time to process the data in parallel.
{% for date in CSET_CASE_DATES %}
R1/{{date}} = """
setup_complete[^] => parbake_recipes
setup_complete[^] => FETCH_DATA:succeed-all => fetch_complete
fetch_complete & parbake_recipes => bake_recipes => cycle_complete
"""
{% endfor %}
{% elif CSET_CYCLING_MODE == "trial" %}
# Analysis from each forecast.
{{CSET_TRIAL_CYCLE_PERIOD}} = """
setup_complete[^] => parbake_recipes
setup_complete[^] => FETCH_DATA:succeed-all => fetch_complete
fetch_complete & parbake_recipes => bake_recipes => cycle_complete
"""
Expand All @@ -53,6 +55,7 @@ final cycle point = {{CSET_TRIAL_END_DATE}}
# Only runs on the final cycle.
R1/$ = """
# Run aggregation recipes.
setup_complete[^] => parbake_aggregation_recipes
fetch_complete & parbake_aggregation_recipes => bake_aggregation_recipes => cycle_complete
# Finalise website and cleanup.
cycle_complete => finish_website => send_email
Expand Down