diff options
Diffstat (limited to 'test/asset/run')
| -rw-r--r-- | test/asset/run/cancel.yaml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/asset/run/cancel.yaml b/test/asset/run/cancel.yaml new file mode 100644 index 0000000..25b807a --- /dev/null +++ b/test/asset/run/cancel.yaml @@ -0,0 +1,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 |