summaryrefslogtreecommitdiff
path: root/.zuul.yaml
blob: 7a26ba8d59f83abdd4ed8a7daf8e48bd7668bcc0 (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
- job:
    name: horizon-openstack-tox-base
    parent: openstack-tox
    irrelevant-files:
      - ^.*\.rst$
      - ^doc/.*$
      - ^releasenotes/.*$
      - ^horizon/locale/.*$
      - ^openstack_dashboard/locale/.*$
      - ^openstack_auth/locale/.*$

- job:
    name: horizon-openstack-tox-python3-django111
    parent: horizon-openstack-tox-base
    vars:
      tox_envlist: py3-dj111
    required-projects:
      - name: openstack/horizon

- job:
    name: horizon-openstack-tox-python3-django22
    parent: horizon-openstack-tox-base
    vars:
      tox_envlist: py3-dj22
    required-projects:
      - name: openstack/horizon

- job:
    name: horizon-selenium-headless
    parent: horizon-openstack-tox-base
    pre-run: playbooks/horizon-selenium-headless/pre.yaml
    vars:
      tox_envlist: selenium-headless

- job:
    name: horizon-integration-tests
    parent: devstack
    pre-run: playbooks/horizon-devstack-integration/pre.yaml
    run: playbooks/horizon-devstack-integration/run.yaml
    post-run: playbooks/horizon-devstack-integration/post.yaml
    roles:
      - zuul: openstack-infra/devstack
    irrelevant-files:
      - ^.*\.rst$
      - ^doc/.*$
      - ^releasenotes/.*$
    vars:
      devstack_services:
        horizon: true
      tox_envlist: integration

- job:
    name: horizon-dsvm-tempest-plugin
    parent: devstack-tempest
    required-projects: &base_required_projects
      - name: openstack/horizon
      - name: openstack/tempest
    irrelevant-files: &base_irrelevant_files
      - ^.*\.rst$
      - ^doc/.*$
      - ^releasenotes/.*$
      - ^horizon/locale/.*$
      - ^openstack_dashboard/locale/.*$
      - ^openstack_auth/locale/.*$
      # Test codes are not related to tempest tests
      # as tempest is defined in a separete repository
      - ^horizon/test/.*$
      - ^openstack_auth/tests/.*$
      - ^openstack_dashboard/test/.*$
      - ^openstack_dashboard/dashboards/.*/tests.py$
    vars: &base_vars
      devstack_localrc:
        USE_PYTHON3: true
      devstack_services:
        horizon: true
        tempest: true
      tempest_concurrency: 2
      tempest_test_regex: test_dashboard_basic_ops
      tox_envlist: all

- job:
    name: horizon-tempest-plugin-ipv6
    parent: devstack-tempest-ipv6
    required-projects: *base_required_projects
    irrelevant-files: *base_irrelevant_files
    vars: *base_vars

- job:
    name: horizon-dsvm-tempest-plugin-py27
    parent: horizon-dsvm-tempest-plugin
    vars:
      devstack_localrc:
        USE_PYTHON3: false

- job:
    # Security testing for known issues
    name: horizon-tox-bandit-baseline
    parent: openstack-tox
    timeout: 2400
    vars:
      tox_envlist: bandit-baseline
    irrelevant-files:
      - ^.*\.rst$
      - ^.*/locale/.*$
      - ^doc/.*$
      - ^releasenotes/.*$
      - ^setup.cfg$
      - ^tools/.*$

- job:
    name: horizon-nodejs10-run-lint
    parent: nodejs-run-lint
    description: |
      Run lint using Node 10 for horizon plugins.
    vars:
      node_version: 10
    nodeset: ubuntu-bionic
    pre-run: playbooks/horizon-nodejs/pre.yaml
    required-projects:
      openstack/horizon

- job:
    name: horizon-nodejs10-run-test
    parent: nodejs-run-test-browser
    description: |
      Run test using Node 10 for horizon plugins.
    vars:
      node_version: 10
    pre-run: playbooks/horizon-nodejs/pre.yaml
    nodeset: ubuntu-bionic
    required-projects:
      openstack/horizon

- project-template:
    name: horizon-nodejs10-jobs
    description: |
      Run lint and test jobs using Node 10 (LTS) for horizon plugins.
    check:
      jobs:
        - horizon-nodejs10-run-lint
        - horizon-nodejs10-run-test
    gate:
      jobs:
        - horizon-nodejs10-run-lint
        - horizon-nodejs10-run-test

- project-template:
    name: horizon-nodejs10-jobs-nonvoting
    description: |
      Run lint and test jobs using Node 10 (LTS) for horizon plugins.
    check:
      jobs:
        - horizon-nodejs10-run-lint:
            voting: false
        - horizon-nodejs10-run-test:
            voting: false

- project-template:
    name: horizon-non-primary-django-jobs
    description: |
      Run unit tests with non-primary Django versions.
    check:
      jobs:
        - horizon-openstack-tox-python3-django111
        - horizon-openstack-tox-python3-django22
    gate:
      jobs:
        - horizon-openstack-tox-python3-django111
        - horizon-openstack-tox-python3-django22

- project:
    templates:
      - check-requirements
      - horizon-nodejs10-jobs
      - horizon-non-primary-django-jobs
      - openstack-lower-constraints-jobs
      - openstack-python-jobs
      - openstack-python3-train-jobs
      - periodic-stable-jobs
      - publish-openstack-docs-pti
      - release-notes-jobs-python3
    check:
      jobs:
        - horizon-selenium-headless
        - horizon-integration-tests
        - horizon-dsvm-tempest-plugin
        - horizon-dsvm-tempest-plugin-py27
        - horizon-tox-bandit-baseline
        - horizon-tempest-plugin-ipv6
    gate:
      queue: horizon
      jobs:
        - horizon-dsvm-tempest-plugin
        - horizon-dsvm-tempest-plugin-py27
        - horizon-selenium-headless
        - horizon-integration-tests
        - horizon-tempest-plugin-ipv6
    periodic-stable:
      jobs:
        - horizon-nodejs10-run-test
        - horizon-integration-tests