summaryrefslogtreecommitdiff
path: root/tests/fixtures/layouts/two-projects-integrated.yaml
blob: 7e3a07a0066e0128a1028e8c8bc2b0bbecece67f (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
- pipeline:
    name: check
    manager: independent
    trigger:
      gerrit:
        - event: patchset-created
    success:
      gerrit:
        Verified: 1
    failure:
      gerrit:
        Verified: -1

- pipeline:
    name: gate
    manager: dependent
    success-message: Build succeeded (gate).
    trigger:
      gerrit:
        - event: comment-added
          approval:
            - Approved: 1
    success:
      gerrit:
        Verified: 2
        submit: true
    failure:
      gerrit:
        Verified: -2
    start:
      gerrit:
        Verified: 0
    precedence: high

- job:
    name: base
    parent: null
    run: playbooks/base.yaml
    nodeset:
      nodes:
        - name: controller
          label: ubuntu-xenial

- job:
    name: test
    run: playbooks/test.yaml

- job:
    name: integration
    run: playbooks/integration.yaml

- project:
    name: org/project
    check:
      jobs:
        - test
    gate:
      jobs:
        - test

# Define jobs for org/project1 in a template to test that the queue name is
# picked up correctly from the project config. This should also be the case
# when the project doesn't include any pipeline config and only references a
# template.
- project-template:
    name: project1-template
    check:
      jobs:
        - integration
    gate:
      jobs:
        - integration

- project:
    name: org/project1
    queue: integrated
    templates:
      - project1-template

- project:
    name: org/project2
    queue: integrated
    check:
      jobs:
        - integration
    gate:
      jobs:
        - integration