feat(gitlab-sim): first commit

This commit is contained in:
2026-06-05 01:29:07 +02:00
commit e2334ec12d
21 changed files with 1778 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
stages:
- build
job-a:
stage: build
script:
- echo a
needs:
- job-b
job-b:
stage: build
script:
- echo b
needs:
- job-a