summaryrefslogtreecommitdiff
path: root/spec/services/ci/pipeline_processing/test_cases/stage_test_on_failure_with_success.yml
blob: 15afe1ce8e185f76d25d3d73bcde567257ea8141 (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
config:
  build:
    stage: build
    script: exit 0

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

  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: success
    jobs: [build]
    expect:
      pipeline: running
      stages:
        build: success
        test: skipped
        deploy: pending
      jobs:
        build: success
        test: skipped
        deploy: pending

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