diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2026-04-04 16:38:53 +0200 |
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2026-06-23 22:42:37 +0200 |
| commit | 26abedba2417ef166a3dfe2370736ec337ed7dfd (patch) | |
| tree | ff26ffd3527a8660138b217d212271d2e6bba59f /test/asset/run | |
| parent | 5aacb05027deb842123b1f74f004531a055d26ae (diff) | |
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 |