forked from cylc/cylc-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflow.cylc
More file actions
52 lines (42 loc) · 1.25 KB
/
flow.cylc
File metadata and controls
52 lines (42 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[meta]
purpose = """
Test that subshells are handled for platform and host configs.
Tasks of the form .*no_subshell act as control runs.
"""
[scheduler]
UTC mode = True
[[events]]
abort on stall timeout = True
stall timeout = PT0S
[scheduling]
[[dependencies]]
R1 = """
host_no_subshell
localhost_subshell
platform_subshell:submit-fail?
platform_no_subshell:submit-fail?
platform_subshell_suffix:submit-fail?
host_subshell:submit-fail?
host_subshell_backticks:submit-fail?
"""
[runtime]
[[root]]
script = true
[[platform_no_subshell]]
platform = improbable platform name
[[host_no_subshell]]
[[[remote]]]
host = localhost
[[platform_subshell]]
platform = $(echo "improbable platform name")
[[platform_subshell_suffix]]
platform = prefix-$( echo middle )-suffix
[[host_subshell]]
[[[remote]]]
host = $(echo "improbable host name")
[[host_subshell_backticks]]
[[[remote]]]
host = `echo "improbable host name"`
[[localhost_subshell]]
[[[remote]]]
host = $(echo "localhost4.localdomain4")