summaryrefslogtreecommitdiff
path: root/spec/services/ci/pipeline_processing/test_cases/dag_build_fails_with_allow_failure_test_on_failure.yml
blob: cfc456387ffc8faa35ebb3ac593fbd9a44d33976 (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
config:
  build:
    stage: build
    allow_failure: true
    script: exit 1

  test:
    stage: test
    when: on_failure
    script: exit 0
    needs: [build]

  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: success
      stages:
        build: success
        test: skipped
        deploy: skipped
      jobs:
        build: failed
        test: skipped
        deploy: skipped

# TODO: What is the real expected behavior here?
# Is `needs` keyword a requirement indicator or just a helper to build dependency tree?
# How should it behave `when: on_failure` with `needs`?
# Further discussions: https://gitlab.com/gitlab-org/gitlab/-/issues/213080