summaryrefslogtreecommitdiff
path: root/spec/services/ci/pipeline_processing/test_cases/dag_build2_build1_rules_out_test_needs_build1_with_optional.yml
blob: 170e1b589bb9a213f289fc06cae5f7b5450bcc18 (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
config:
  build1:
    stage: build
    script: exit 0
    rules:
      - if: $CI_COMMIT_REF_NAME == "invalid"

  build2:
    stage: build
    script: exit 0

  test:
    stage: test
    script: exit 0
    needs:
      - job: build1
        optional: true

init:
  expect:
    pipeline: pending
    stages:
      build: pending
      test: pending
    jobs:
      build2: pending
      test: pending

transitions:
  - event: success
    jobs: [test]
    expect:
      pipeline: running
      stages:
        build: pending
        test: success
      jobs:
        build2: pending
        test: success

  - event: success
    jobs: [build2]
    expect:
      pipeline: success
      stages:
        build: success
        test: success
      jobs:
        build2: success
        test: success