Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wxtim committed May 23, 2024
1 parent e6d4017 commit 470d170
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 0 deletions.
6 changes: 6 additions & 0 deletions bin/lint_all_flows.sh
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
5 changes: 5 additions & 0 deletions bin/make_all_readmes.sh
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
15 changes: 15 additions & 0 deletions runnable-workflow-script/README.md
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
12 changes: 12 additions & 0 deletions set_platform_from_CLI/README.md
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:
15 changes: 15 additions & 0 deletions simulate-failure-recovery/README.md
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

0 comments on commit 470d170

Please sign in to comment.