summaryrefslogtreecommitdiff
path: root/test/asset/run/cancel.yaml
blob: 25b807afdaa5e5997f114be85701bf017e8c4264 (plain)
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
job first:
  shell: |
    mkfifo wait
    realpath wait
    cat wait
    touch x

  artifact out:
    path: x


job second:
  uses:
    - first.out

  shell: |
    mv x y

  artifact out:
    path: y


job third:
  shell: |
    touch z

  artifact out:
    path: z