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

dag_build_fails_other_build_succeeds_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: 4c676761e5c51cea4ba1719a295597d5ed319ecc (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
51
52
53
54
55
56
57
58
59
60
61
62
63
config:
  build_1:
    stage: build
    script: exit 0

  build_2:
    stage: build
    script: exit 1

  test:
    stage: test
    script: exit 0

  deploy:
    stage: deploy
    script: exit 0
    when: always
    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]
    expect:
      pipeline: running
      stages:
        build: running
        test: created
        deploy: created
      jobs:
        build_1: success
        build_2: pending
        test: created
        deploy: created

  - event: drop
    jobs: [build_2]
    expect:
      pipeline: running
      stages:
        build: failed
        test: skipped
        deploy: pending
      jobs:
        build_1: success
        build_2: failed
        test: skipped
        deploy: pending

# TODO: what's the actual expected behavior here?
# Further discussions: https://gitlab.com/gitlab-org/gitlab/-/issues/213080