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
+23
View File
@@ -0,0 +1,23 @@
stages:
- build
- test
build-job:
stage: build
script:
- echo "ok"
bad-stage-job:
stage: nonexistent
script:
- echo "this stage does not exist"
no-script-job:
stage: test
deprecated-job:
stage: test
script:
- echo "old style"
only:
- main