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

dag_build_succeeds_test_on_failure.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: 700d444080226d2c13021cb4b29fbd744f834e3f (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
config:
  build:
    stage: build
    script: exit 0

  test:
    stage: test
    when: on_failure
    script: exit 0
    needs: [build]

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

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

# TODO: Should we run `test`?
# Further discussions: https://gitlab.com/gitlab-org/gitlab/-/issues/213080