summaryrefslogtreecommitdiff
path: root/.zuul.yaml
blob: 2d6777a6294635e77b93289de5f2aaf69aef9cd2 (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
- job:
    name: python-cinderclient-functional-base
    abstract: true
    parent: devstack-tox-functional
    timeout: 4500
    required-projects:
      - openstack/cinder
      - openstack/python-cinderclient
    vars:
      openrc_enable_export: true
      devstack_localrc:
        USE_PYTHON3: true
        VOLUME_BACKING_FILE_SIZE: 16G

- job:
    name: python-cinderclient-functional-py36
    parent: python-cinderclient-functional-base
    # need to specify a platform that has python 3.6 available
    nodeset: devstack-single-node-centos-8
    vars:
      python_version: 3.6
      tox_envlist: functional-py36

- job:
    name: python-cinderclient-functional-py38
    parent: python-cinderclient-functional-base
    nodeset: openstack-single-node-focal
    vars:
      python_version: 3.8
      tox_envlist: functional-py38

- project:
    templates:
      - check-requirements
      - lib-forward-testing-python3
      - openstack-cover-jobs
      - openstack-python3-victoria-jobs
      - publish-openstack-docs-pti
      - release-notes-jobs-python3
    check:
      jobs:
        - python-cinderclient-functional-py36
        - python-cinderclient-functional-py38
        - openstack-tox-pylint:
            voting: false