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

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

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

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

# TODO: Should we run `test`?
# Further discussions: https://gitlab.com/gitlab-org/gitlab/-/issues/213080