summaryrefslogtreecommitdiff
path: root/spec/services/ci/pipeline_processing/test_cases/dag_build_fails_test_on_failure_deploy_needs_test.yml
blob: 5ace621e89c9389bcac62137e42f4e2466ad51a0 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
config:
  build:
    stage: build
    script: exit 1

  test:
    stage: test
    when: on_failure
    script: exit 0

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

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

transitions:
  - event: drop
    jobs: [build]
    expect:
      pipeline: running
      stages:
        build: failed
        test: pending
        deploy: created
      jobs:
        build: failed
        test: pending
        deploy: created

  - event: success
    jobs: [test]
    expect:
      pipeline: running
      stages:
        build: failed
        test: success
        deploy: pending
      jobs:
        build: failed
        test: success
        deploy: pending

  - event: success
    jobs: [deploy]
    expect:
      pipeline: failed
      stages:
        build: failed
        test: success
        deploy: success
      jobs:
        build: failed
        test: success
        deploy: success