File: parameter_update.yaml

package info (click to toggle)
jube 2.7.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,640 kB
  • sloc: python: 8,415; xml: 838; sh: 180; makefile: 14
file content (33 lines) | stat: -rw-r--r-- 744 bytes parent folder | download | duplicates (3)
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
name: parameter_updates
outpath: bench_run
comment: A parameter_update example

#Configuration
parameterset:
  name: foo
  parameter:
    - {name: bar_never, mode: text, update_mode: never, _: "iter_never: $jube_wp_id"} 
    - {name: bar_use, mode: text, update_mode: use, _: "iter_use: $jube_wp_id"} 
    - {name: bar_step, mode: text, update_mode: step, _: "iter_step: $jube_wp_id"}

#Operation
step:
  - name: step1
    use: foo
    do:
      - echo $bar_never
      - echo $bar_use
      - echo $bar_step
  - name: step2
    depend: step1
    use: foo
    do:
      - echo $bar_never
      - echo $bar_use
      - echo $bar_step
  - name: step3
    depend: step2
    do:
      - echo $bar_never
      - echo $bar_use
      - echo $bar_step