summaryrefslogtreecommitdiff
path: root/tests/fixtures/config/mqtt-driver/git/common-config/zuul.d/config.yaml
blob: c842e94246effcb8d8633a2b2a1240bab90ec7c0 (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
- pipeline:
    name: check
    manager: independent
    trigger:
      gerrit:
        - event: patchset-created
    start:
      mqtt:
        topic: "{tenant}/zuul_start/{pipeline}/{project}/{branch}"
    success:
      gerrit:
        Verified: 1
      mqtt:
        topic: "{tenant}/zuul_buildset/{pipeline}/{project}/{branch}"
    failure:
      gerrit:
        Verified: -1
      mqtt:
        topic: "{tenant}/zuul_buildset/{pipeline}/{project}/{branch}"

- job:
    name: base
    parent: null

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

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

- project:
    name: org/project
    check:
      jobs:
        - test
        - dependent-test:
            dependencies:
              - test

- project:
    name: common-config
    check:
      jobs: []