Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stage_test_manual_allow_failure_true_deploy_on_failure.yml « test_cases « pipeline_processing « ci « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b30316aef68bc19f51c37bbb7e51e302794e8d0 (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
config:
  test:
    stage: test
    when: manual
    allow_failure: true
    script: exit 1

  deploy:
    stage: deploy
    when: on_failure
    script: exit 0

init:
  expect:
    pipeline: skipped
    stages:
      test: skipped
      deploy: skipped
    jobs:
      test: manual
      deploy: skipped

transitions:
  - event: enqueue
    jobs: [test]
    expect:
      pipeline: pending
      stages:
        test: pending
        deploy: skipped
      jobs:
        test: pending
        deploy: skipped

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