diff options
Diffstat (limited to 'test/asset/shell/minici.yaml')
| -rw-r--r-- | test/asset/shell/minici.yaml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/asset/shell/minici.yaml b/test/asset/shell/minici.yaml new file mode 100644 index 0000000..b980161 --- /dev/null +++ b/test/asset/shell/minici.yaml @@ -0,0 +1,28 @@ +repo r1: +repo r2: + +job generate: + checkout: null + + shell: + - echo "content 1" > f1 + - mkdir -p dir + - echo "content 2" > dir/f2 + + artifact file: + path: f1 + + artifact dir: + path: dir + + +job combine: + checkout: + - repo: r1 + dest: d1 + - repo: r2 + dest: d2 + + uses: + - generate.file + - generate.dir |