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

  test:
    stage: test
    allow_failure: true
    script: exit 1

  deploy:
    stage: deploy
    script: exit 0

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