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

dag_deploy_needs_empty.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: 1783c0acb11a0a184c6fe6602c318ccb60922672 (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
config:
  build:
    stage: build
    script: exit 0

  test:
    stage: test
    script: exit 0

  deploy:
    stage: deploy
    script: exit 0
    needs: []

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

transitions: []