diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2025-06-29 08:58:37 +0200 | 
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-06-29 10:16:30 +0200 | 
| commit | f1beff8cdbf5a2e54ea5e36b6edf337fc45ffc8b (patch) | |
| tree | 16bc4f7fc8e6a73e1af5e0c157ae75a74dac3cfa /test/asset | |
| parent | 126d17c96fe0730e4ae8775ca2cd4f666b6e7d61 (diff) | |
Gather related jobs passed by refs to jobsets
Diffstat (limited to 'test/asset')
| -rw-r--r-- | test/asset/run/dependencies.yaml | 55 | 
1 files changed, 55 insertions, 0 deletions
| diff --git a/test/asset/run/dependencies.yaml b/test/asset/run/dependencies.yaml new file mode 100644 index 0000000..7452b5a --- /dev/null +++ b/test/asset/run/dependencies.yaml @@ -0,0 +1,55 @@ +job first: +  shell: +    - touch x + +  artifact out: +    path: x + + +job second: +  uses: +    - first.out + +  shell: +    - mv x y + +  artifact out: +    path: y + + +job third: +  uses: +    - first.out + +  shell: +    - mv x z + +  artifact out: +    path: z + + +job fourth: +  uses: +    - second.out + +  shell: +    - mv y w + +  artifact out: +    path: w + + +job fifth: +    uses: +      - third.out +      - fourth.out + +    shell: +      - mv z z2 +      - mv w w2 + +    artifact out1: +      path: z2 + +    artifact out2: +      path: w2 |