summaryrefslogtreecommitdiff
path: root/tests/fixtures/config/openstack/git/project-config/zuul.yaml
blob: 93bdb1132563c7b36a61f623195517cae4ced093 (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
89
90
91
92
93
94
95
96
97
98
99
- pipeline:
    name: check
    manager: independent
    success-message: Build succeeded (check).
    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
    timeout: 30
    nodeset:
      nodes:
        - name: controller
          label: ubuntu-xenial
    run: playbooks/base.yaml

- job:
    name: python27
    parent: base
    run: playbooks/python27.yaml

- job:
    name: python27
    parent: base
    branches: stable/mitaka
    nodeset:
      nodes:
        - name: controller
          label: ubuntu-trusty
    run: playbooks/python27.yaml

- job:
    name: python35
    parent: base
    run: playbooks/python35.yaml

- project-template:
    name: python-jobs
    gate:
      jobs:
        - python27
        - python35

- job:
    name: dsvm
    parent: base
    required-projects:
      - openstack/keystone
      - openstack/nova
    run: playbooks/dsvm.yaml

- project:
    name: openstack/nova
    templates:
      - python-jobs
    check:
      jobs:
        - dsvm
    gate:
      queue: integrated

- project:
    name: openstack/keystone
    templates:
      - python-jobs
    check:
      jobs:
        - dsvm
    gate:
      queue: integrated