summaryrefslogtreecommitdiff
path: root/spec/services/ci/pipeline_processing/test_cases/dag_builds_succeed_test_on_failure_deploy_needs_one_build_and_test.yml
blob: 29c1562389ca3f7ca5a72ca895e0545253b27396 (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
config:
  build_1:
    stage: build
    script: exit 0

  build_2:
    stage: build
    script: exit 0

  test:
    stage: test
    script: exit 0
    when: on_failure

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

init:
  expect:
    pipeline: pending
    stages:
      build: pending
      test: created
      deploy: created
    jobs:
      build_1: pending
      build_2: pending
      test: created
      deploy: created

transitions:
  - event: success
    jobs: [build_1, build_2]
    expect:
      pipeline: success
      stages:
        build: success
        test: skipped
        deploy: skipped
      jobs:
        build_1: success
        build_2: success
        test: skipped
        deploy: skipped