-
Notifications
You must be signed in to change notification settings - Fork 21
/
.zuul.yaml
196 lines (175 loc) · 4.58 KB
/
.zuul.yaml
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
---
- job:
name: rdopkg-base
pre-run: playbooks/base.yaml
parent: tox
abstract: true
required-projects:
- distroinfo
- job:
name: rdopkg-base-py36
parent: rdopkg-base
abstract: true
nodeset:
nodes:
- name: cloud-centos-8-stream
label: cloud-centos-8-stream
- job:
name: rdopkg-base-py39
parent: rdopkg-base
abstract: true
nodeset:
nodes:
- name: cloud-centos-9-stream
label: cloud-centos-9-stream
- job:
name: rdopkg-base-py311
parent: rdopkg-base
abstract: true
nodeset:
nodes:
- name: cloud-fedora-37
label: cloud-fedora-37
- job:
name: rdopkg-base-py312
parent: rdopkg-base
abstract: true
nodeset:
nodes:
- name: cloud-fedora-39
label: cloud-fedora-39
- job:
name: rdopkg-base-coverage-py36
parent: rdopkg-base-py36
post-run: playbooks/fetch-coverage.yaml
success-url: coverage/index.html
- job:
name: rdopkg-base-coverage-py39
parent: rdopkg-base-py39
post-run: playbooks/fetch-coverage.yaml
success-url: coverage/index.html
- job:
name: rdopkg-base-coverage-py311
parent: rdopkg-base-py311
post-run: playbooks/fetch-coverage.yaml
success-url: coverage/index.html
- job:
name: rdopkg-base-coverage-py312
parent: rdopkg-base-py312
post-run: playbooks/fetch-coverage.yaml
success-url: coverage/index.html
- job:
name: rdopkg-py36-tests
parent: rdopkg-base-coverage-py36
description: rdopkg unit and feature tests on python3.6
vars:
tox_envlist: py36-unit,py36-feature,py36-cover
- job:
name: rdopkg-py39-tests
parent: rdopkg-base-coverage-py39
description: rdopkg unit and feature tests on python3.9
vars:
tox_envlist: py39-unit,py39-feature,py39-cover
- job:
name: rdopkg-py311-tests
parent: rdopkg-base-coverage-py311
description: rdopkg unit and feature tests on python3.11
vars:
tox_envlist: py311-unit,py311-feature,py311-cover
- job:
name: rdopkg-py312-tests
parent: rdopkg-base-coverage-py312
description: rdopkg unit and feature tests on python3.12
vars:
tox_envlist: py312-unit,py312-feature,py312-cover
- job:
name: rdopkg-py36-integration
parent: rdopkg-base-py36
description: rdopkg unit and feature tests on python3.6
vars:
tox_envlist: py36-integration
- job:
name: rdopkg-py39-integration
parent: rdopkg-base-py39
description: rdopkg unit and feature tests on python3.9
vars:
tox_envlist: py39-integration
- job:
name: rdopkg-py311-integration
parent: rdopkg-base-py311
description: rdopkg unit and feature tests on python3.11
vars:
tox_envlist: py311-integration
- job:
name: rdopkg-py312-integration
parent: rdopkg-base-py312
description: rdopkg unit and feature tests on python3.12
vars:
tox_envlist: py312-integration
- job:
name: rdopkg-lint
parent: rdopkg-base-py311
description: rdopkg linting
vars:
tox_envlist: lint
- job:
name: rdopkg-install-epel-8
description: install rdopkg with epel
run: playbooks/install-test-epel-8.yaml
nodeset:
nodes:
- name: cloud-centos-8-stream
label: cloud-centos-8-stream
- job:
name: rdopkg-install-epel-9
description: install rdopkg with epel
run: playbooks/install-test-epel-9.yaml
nodeset:
nodes:
- name: cloud-centos-9-stream
label: cloud-centos-9-stream
- job:
name: rdopkg-dlrn-master
parent: dlrn-base
timeout: 3600
description: rdopkg integration tests with DLRN master
run: playbooks/dlrn-master.yaml
nodeset:
nodes:
- name: cloud-centos-9-stream
label: cloud-centos-9-stream
required-projects:
- DLRN
- project:
name: rdopkg
check:
jobs:
- rdopkg-py36-tests
- rdopkg-py39-tests
- rdopkg-py311-tests
- rdopkg-py312-tests
- rdopkg-py36-integration
- rdopkg-py39-integration
- rdopkg-py311-integration
- rdopkg-py312-integration
- rdopkg-lint
- rdopkg-dlrn-master
gate:
jobs:
- rdopkg-py36-tests
- rdopkg-py39-tests
- rdopkg-py311-tests
- rdopkg-py312-tests
- rdopkg-py36-integration
- rdopkg-py39-integration
- rdopkg-py311-integration
- rdopkg-py312-integration
- rdopkg-lint
- rdopkg-dlrn-master
periodic:
jobs:
- rdopkg-install-epel-8
- rdopkg-install-epel-9
release:
jobs:
- upload-pypi