diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2025-05-18 10:35:24 +0200 | 
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-05-20 22:03:55 +0200 | 
| commit | aa9926074264d63aa6ceb2f3dd81e1fb9f9d0d29 (patch) | |
| tree | e4d2b06e65fb11081fbc61787d05572cc904bc71 /test/asset | |
| parent | 4ac26772681d74be2cbbf9376a02ebc395257c86 (diff) | |
Reflect dependencies in job id
Diffstat (limited to 'test/asset')
| -rw-r--r-- | test/asset/run/external.yaml | 42 | 
1 files changed, 42 insertions, 0 deletions
| diff --git a/test/asset/run/external.yaml b/test/asset/run/external.yaml new file mode 100644 index 0000000..f1d2b2c --- /dev/null +++ b/test/asset/run/external.yaml @@ -0,0 +1,42 @@ +repo first: +  path: ../first + +repo second: +  path: ../second + + +job single: +  checkout: +    repo: first +    dest: first + +  shell: +    - tar czf first.tar.gz first + +  artifact tarball: +    path: ./first.tar.gz + +job multiple: +  checkout: +    - repo: first +      dest: first-subdir +      subtree: subdir +    - repo: second +      dest: second-subdir +      subtree: sub + +  shell: +    - tar czf pack.tar.gz first-subdir second-subdir + +  artifact tarball: +    path: ./pack.tar.gz + +job combine: +  checkout: null + +  shell: +    - ls + +  uses: +    - single.tarball +    - multiple.tarball |