summaryrefslogtreecommitdiff
path: root/spec/services/ci/pipeline_processing/test_cases/dag_test_manual_allow_failure_true_other_test_succeeds_deploy_needs_both.yml
blob: a5bb103d1a5f0973a445e32dc0632785f503f2ae (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
config:
  test1:
    stage: test
    script: exit 0

  test2:
    stage: test
    when: manual
    allow_failure: true
    script: exit 1

  deploy:
    stage: deploy
    script: exit 0
    needs: [test1, test2]

init:
  expect:
    pipeline: pending
    stages:
      test: pending
      deploy: skipped
    jobs:
      test1: pending
      test2: manual
      deploy: skipped

transitions:
  - event: success
    jobs: [test1]
    expect:
      pipeline: success
      stages:
        test: success
        deploy: skipped
      jobs:
        test1: success
        test2: manual
        deploy: skipped