diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2025-11-27 21:54:20 +0100 |
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-11-28 22:17:37 +0100 |
| commit | ff3122f0a82f2c0ba3593282f43c911ac521ca12 (patch) | |
| tree | 676f0ce79e22e893d6d4219ddba99ab24b85dc86 /test/asset/run | |
| parent | c11cf4ea1822b280be7873c61c004d23627b0349 (diff) | |
Do not use checkouts with explicit revision in job ID
Diffstat (limited to 'test/asset/run')
| -rw-r--r-- | test/asset/run/many_repos.yaml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/asset/run/many_repos.yaml b/test/asset/run/many_repos.yaml index 63f8fa2..5910526 100644 --- a/test/asset/run/many_repos.yaml +++ b/test/asset/run/many_repos.yaml @@ -21,3 +21,29 @@ job first: artifact out: path: some_file + +job first_manual_revision: + checkout: + - repo: r1 + dest: d1 + - repo: r1 + dest: d1b + revision: tag1 + - repo: r2 + dest: d2b + revision: tag1 + - repo: r4 + dest: d4b + - repo: r3 + dest: d3 + revision: tag1 + - repo: r2 + dest: d2 + - repo: r4 + dest: d4 + + shell: + - touch some_file + + artifact out: + path: some_file |