File: suite.rc

package info (click to toggle)
cylc 7.8.0-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 24,964 kB
  • sloc: python: 76,920; sh: 16,733; ansic: 178; xml: 164; makefile: 101; lisp: 54; perl: 16
file content (20 lines) | stat: -rw-r--r-- 468 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[scheduling]
    [[queues]]
        [[[my_queue]]]
            limit = 1
            members = METASYNTACTIC
    [[dependencies]]
        graph = "foo:start => bar"
[runtime]
    [[METASYNTACTIC]]
    [[foo]]
        inherit = METASYNTACTIC
        script = """
            sleep 10
            cylc trigger $CYLC_SUITE_NAME bar 1
            sleep 10
            cylc stop $CYLC_SUITE_NAME
            sleep 10
        """
    [[bar]]
        inherit = METASYNTACTIC