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

dag_build_succeds_test_manual_allow_failure_true_deploy_needs_test.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: 4e4b2f222242813067c19bf7aa047a01838ffc31 (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
config:
  build:
    stage: build
    script: exit 0

  test:
    stage: test
    when: manual
    allow_failure: true
    script: exit 0

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

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: created
      jobs:
        build: success
        test: manual
        deploy: created