summaryrefslogtreecommitdiff
path: root/spec/services/ci/pipeline_processing/test_cases/dag_deploy_needs_empty.yml
blob: 1783c0acb11a0a184c6fe6602c318ccb60922672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
config:
  build:
    stage: build
    script: exit 0

  test:
    stage: test
    script: exit 0

  deploy:
    stage: deploy
    script: exit 0
    needs: []

init:
  expect:
    pipeline: pending
    stages:
      build: pending
      test: created
      deploy: pending
    jobs:
      build: pending
      test: created
      deploy: pending

transitions: []