File: .zuul.yaml

package info (click to toggle)
python-os-brick 6.11.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,220 kB
  • sloc: python: 20,429; sh: 92; makefile: 23
file content (107 lines) | stat: -rw-r--r-- 3,039 bytes parent folder | download
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
100
101
102
103
104
105
106
107
- project:
    templates:
      - check-requirements
      - lib-forward-testing-python3
      - openstack-python3-jobs
      - publish-openstack-docs-pti
      - release-notes-jobs-python3
    check:
      jobs:
        - os-brick-code-coverage:
            voting: false
        - os-brick-src-devstack-plugin-ceph-v
        - os-brick-src-devstack-plugin-ceph-nv
        - os-brick-src-tempest-lvm-lio-barbican
        - os-brick-src-tempest-nfs:
            voting: false
        - os-brick-mypy:
            voting: false
    gate:
      jobs:
        - os-brick-src-tempest-lvm-lio-barbican
    experimental:
      jobs:
        - openstack-tox-pylint

- job:
    name: os-brick-code-coverage
    parent: openstack-tox-cover
    timeout: 2400
    irrelevant-files: &non-code-files
      - ^(test-|)requirements.txt$
      - ^.*\.rst$
      - ^doc/.*$
      - ^releasenotes/.*$
      - ^tools/.*$

- job:
    name: os-brick-src-devstack-plugin-ceph
    abstract: true
    description: |
      Tempest job which tests os-brick from source.
      Former names for this job were:
        * legacy-tempest-dsvm-full-ceph-plugin-src-os-brick
    parent: cinder-plugin-ceph-tempest
    required-projects:
      - opendev.org/openstack/os-brick
    irrelevant-files: &doc-files
      - ^.*\.rst$
      - ^doc/.*$
      - ^releasenotes/.*$

- job:
    name: os-brick-src-devstack-plugin-ceph-v
    final: true
    description: |
      Runs tempest tests on os-brick source against ceph.
      This voting job runs on changes that could affect rbd.
    parent: os-brick-src-devstack-plugin-ceph
    files:
      - ^os_brick/initiator/connector.py$
      - ^os_brick/initiator/connectors/rbd.py$
      - ^os_brick/initiator/linuxrbd.py$
      - ^os_brick/utils.py$

- job:
    name: os-brick-src-devstack-plugin-ceph-nv
    final: true
    voting: false
    description: |
      Runs tempest tests on os-brick source against ceph.
      This non-voting job runs changes that don't specifically
      impact ceph-related os-brick code.
    parent: os-brick-src-devstack-plugin-ceph
    irrelevant-files:
      - ^.*\.rst$
      - ^doc/.*$
      - ^releasenotes/.*$
      - ^os_brick/initiator/connector.py$
      - ^os_brick/initiator/connectors/rbd.py$
      - ^os_brick/initiator/linuxrbd.py$
      - ^os_brick/utils.py$

- job:
    name: os-brick-src-tempest-lvm-lio-barbican
    parent: cinder-tempest-plugin-lvm-lio-barbican
    description: |
      Specialized cinder-tempest-lvm-lio-barbican
      which runs against os-brick from sources.
      Former names for this job were:
        * legacy-tempest-dsvm-full-lio-src-os-brick
    required-projects:
      - opendev.org/openstack/os-brick
    irrelevant-files: *doc-files

- job:
    name: os-brick-src-tempest-nfs
    parent: devstack-plugin-nfs-tempest-full
    required-projects:
      - opendev.org/openstack/os-brick
    irrelevant-files: *doc-files

- job:
    name: os-brick-mypy
    parent: openstack-tox
    vars:
      tox_envlist: mypy
    irrelevant-files: *non-code-files