-
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
5 changed files
with
53 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,6 @@ | ||
#!/bin/bash | ||
for workflow in */flow.cylc; do | ||
flowdir=$(dirname "${workflow}") | ||
echo "${fowdir}" | ||
cylc lint "./${flowdir}" | ||
done |
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,5 @@ | ||
#!/bin/bash | ||
for workflow in */flow.cylc; do | ||
flowdir=$(dirname "${workflow}") | ||
./bin/readmemaker2.sh "./${flowdir}" > "./${flowdir}/README.md" | ||
done |
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,15 @@ | ||
# Simulate branching workflows | ||
|
||
Sometimes we want to try out branching workflows to see how the workflow | ||
will handle different pathways. We can use simulation mode to see which | ||
pathways through a workflow are handled. | ||
|
||
This toy example has a data gathering task which may sometimes fail. If it | ||
does we want to ignore it and move on. | ||
|
||
Run this workflow with: | ||
|
||
cylc vip --mode simulation | ||
--- | ||
Written for Cylc Version: 8.x | ||
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,12 @@ | ||
# | ||
|
||
How to use a command line variable to | ||
choose compute platform. | ||
e.g. | ||
# Look at this config | ||
$ cylc config . | ||
# Validate, install and play this config | ||
$ cylc vip -s 'platform="cinnamon"' | ||
--- | ||
Written for Cylc Version: | ||
Tested with Cylc Version: |
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,15 @@ | ||
# Simulate branching workflows | ||
|
||
Sometimes we want to try out branching workflows to see how the workflow | ||
will handle different pathways. We can use simulation mode to see which | ||
pathways through a workflow are handled. | ||
|
||
This toy example has a data gathering task which may sometimes fail. If it | ||
does we want to ignore it and move on. | ||
|
||
Run this workflow with: | ||
|
||
cylc vip --mode simulation | ||
--- | ||
Written for Cylc Version: 8.x | ||
Tested with Cylc Version: 8.3 |