gitlab-sim/testdata/needs_cycle.yml
2026-06-05 01:29:07 +02:00

17 lines
152 B
YAML

stages:
- build
job-a:
stage: build
script:
- echo a
needs:
- job-b
job-b:
stage: build
script:
- echo b
needs:
- job-a