diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2025-11-26 21:38:01 +0100 |
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-11-28 22:17:37 +0100 |
| commit | c11cf4ea1822b280be7873c61c004d23627b0349 (patch) | |
| tree | 2034775aa1218705b72b75ff579e86dc8b894117 /test/asset/run/many_repos.yaml | |
| parent | b100f6e64074c761327e1113a0c8afaf74091a23 (diff) | |
Well-defined order of dependencies in job ID
Diffstat (limited to 'test/asset/run/many_repos.yaml')
| -rw-r--r-- | test/asset/run/many_repos.yaml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/asset/run/many_repos.yaml b/test/asset/run/many_repos.yaml new file mode 100644 index 0000000..63f8fa2 --- /dev/null +++ b/test/asset/run/many_repos.yaml @@ -0,0 +1,23 @@ +repo r1: +repo r2: +repo r3: +repo r4: + +job first: + checkout: + - repo: r1 + dest: d1 + - repo: r4 + dest: d4b + - repo: r3 + dest: d3 + - repo: r2 + dest: d2 + - repo: r4 + dest: d4 + + shell: + - touch some_file + + artifact out: + path: some_file |