summaryrefslogtreecommitdiff
path: root/tests/fixtures/config/ansible-versions/git/common-config/zuul.yaml
blob: 14477e20dc651d0ac2bab931b3e6d0cc9d2b5499 (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
- pipeline:
    name: check
    manager: independent
    trigger:
      gerrit:
        - event: patchset-created
    success:
      gerrit:
        Verified: 1
    failure:
      gerrit:
        Verified: -1

- job:
    name: base
    parent: null

- job:
    name: ansible-version
    run: playbooks/ansible-version.yaml


- job:
    name: ansible-default
    parent: ansible-version
    vars:
      test_ansible_version_major: 2
      test_ansible_version_minor: 13

# This job is used by a test case specifying a different ansible version in
# fixtures/zuul-default-ansible-version.conf
- job:
    name: ansible-default-zuul-conf
    parent: ansible-version
    vars:
      test_ansible_version_major: 2
      test_ansible_version_minor: 12

- job:
    name: ansible-5
    parent: ansible-version
    ansible-version: 5
    vars:
      test_ansible_version_major: 2
      test_ansible_version_minor: 12

- job:
    name: ansible-6
    parent: ansible-version
    ansible-version: 6
    vars:
      test_ansible_version_major: 2
      test_ansible_version_minor: 13

- project:
    name: common-config
    check:
      jobs:
        - ansible-default
        - ansible-5
        - ansible-6

- project:
    name: org/project
    check:
      jobs:
        - ansible-default-zuul-conf
        - ansible-5
        - ansible-6