-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
168,114 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Demonstrate using cylc play -t | ||
|
||
This workflow contains two workflows, animals and fungi | ||
which live largely separate existences. | ||
If the user plays them using cylc vip then both will | ||
be run, but the user can choose to use | ||
|
||
``` | ||
cylc vip -t 2612/start_animals | ||
cylc vip -t 2710/start_fungi | ||
``` | ||
|
||
To effectively run only one workflow. | ||
|
||
--- | ||
|
||
Written for Cylc Version: 8 | ||
Tested with Cylc Version: 8.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!jinja2 | ||
[meta] | ||
title = Demonstrate using cylc play -t | ||
description = """ | ||
This workflow contains two workflows, animals and fungi | ||
which live largely separate existences. | ||
If the user plays them using cylc vip then both will | ||
be run, but the user can choose to use | ||
``` | ||
cylc vip -t 2612/start_animals | ||
cylc vip -t 2710/start_fungi | ||
``` | ||
To effectively run only one workflow. | ||
""" | ||
written for cylc version = 8 | ||
tested with cylc version = 8.3 | ||
|
||
[scheduler] | ||
allow implicit tasks = True | ||
cycle point format = %Y | ||
|
||
[scheduling] | ||
initial cycle point = 2612 | ||
# final cycle point = 2612 | ||
[[graph]] | ||
P1Y = """ | ||
start_all | start_animals[-P1Y] => start_animals | ||
start_all | start_fungi[-P1Y] => start_fungi | ||
start_animals => elephant => wombat & sloth | ||
start_fungi => waxcap & cordyceps => yeast => amanita | ||
""" | ||
|
||
[runtime] | ||
[[root]] | ||
script = sleep 7 |
Oops, something went wrong.