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

stage_test_manual_allow_failure_false.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: 759b4d0ae7544c9aa6a58d8fec915168ee647ad1 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
config:
  test:
    stage: test
    when: manual
    allow_failure: false
    script: exit 0

  deploy:
    stage: deploy
    script: exit 0

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

transitions:
  - event: play
    jobs: [test]
    expect:
      pipeline: pending
      stages:
        test: pending
        deploy: created
      jobs:
        test: pending
        deploy: created

  - event: run
    jobs: [test]
    expect:
      pipeline: running
      stages:
        test: running
        deploy: created
      jobs:
        test: running
        deploy: created

  - event: success
    jobs: [test]
    expect:
      pipeline: running
      stages:
        test: success
        deploy: pending
      jobs:
        test: success
        deploy: pending

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