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

dag_test_manual_allow_failure_false_deploy_always.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: ea7f0f06c501e93d1ecc095cd5b36b1db7a25e40 (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
config:
  test:
    stage: test
    when: manual
    allow_failure: false
    script: exit 1

  deploy:
    stage: deploy
    when: always
    script: exit 0
    needs: [test]

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: drop
    jobs: [test]
    expect:
      pipeline: running
      stages:
        test: failed
        deploy: pending
      jobs:
        test: failed
        deploy: pending