Skip to content

Commit 547f238

Browse files
committed
Add --with-dtrace to the cstratak workers on 3.15+
1 parent da7468a commit 547f238

1 file changed

Lines changed: 42 additions & 0 deletions

File tree

master/custom/workers.py

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,11 +149,17 @@ def get_workers(settings):
149149
cpw(
150150
name="cstratak-fedora-rawhide-x86_64",
151151
tags=['linux', 'unix', 'fedora', 'amd64', 'x86-64'],
152+
configure_flags=[
153+
BranchConfigureFlags("--with-dtrace", min_branch=(3, 15)),
154+
],
152155
parallel_tests=10,
153156
),
154157
cpw(
155158
name="cstratak-fedora-stable-x86_64",
156159
tags=['linux', 'unix', 'fedora', 'amd64', 'x86-64'],
160+
configure_flags=[
161+
BranchConfigureFlags("--with-dtrace", min_branch=(3, 15)),
162+
],
157163
parallel_tests=10,
158164
),
159165
cpw(
@@ -172,24 +178,36 @@ def get_workers(settings):
172178
cpw(
173179
name="cstratak-CentOS9-x86_64",
174180
tags=['linux', 'unix', 'rhel', 'amd64', 'x86-64'],
181+
configure_flags=[
182+
BranchConfigureFlags("--with-dtrace", min_branch=(3, 15)),
183+
],
175184
parallel_tests=6,
176185
),
177186
cpw(
178187
name="cstratak-CentOS9-fips-x86_64",
179188
tags=['linux', 'unix', 'rhel', 'amd64', 'x86-64', 'fips'],
189+
configure_flags=[
190+
BranchConfigureFlags("--with-dtrace", min_branch=(3, 15)),
191+
],
180192
parallel_tests=6,
181193
# Only 3.12+ for FIPS builder
182194
not_branches=["3.10", "3.11"],
183195
),
184196
cpw(
185197
name="cstratak-fedora-rawhide-ppc64le",
186198
tags=['linux', 'unix', 'fedora', 'ppc64le'],
199+
configure_flags=[
200+
BranchConfigureFlags("--with-dtrace", min_branch=(3, 15)),
201+
],
187202
parallel_tests=10,
188203
timeout_factor=2, # Increase the timeout on this slow worker
189204
),
190205
cpw(
191206
name="cstratak-fedora-stable-ppc64le",
192207
tags=['linux', 'unix', 'fedora', 'ppc64le'],
208+
configure_flags=[
209+
BranchConfigureFlags("--with-dtrace", min_branch=(3, 15)),
210+
],
193211
parallel_tests=10,
194212
timeout_factor=2, # Increase the timeout on this slow worker
195213
),
@@ -203,17 +221,26 @@ def get_workers(settings):
203221
cpw(
204222
name="cstratak-CentOS9-ppc64le",
205223
tags=['linux', 'unix', 'rhel', 'ppc64le'],
224+
configure_flags=[
225+
BranchConfigureFlags("--with-dtrace", min_branch=(3, 15)),
226+
],
206227
parallel_tests=10,
207228
timeout_factor=2, # Increase the timeout on this slow worker
208229
),
209230
cpw(
210231
name="cstratak-fedora-rawhide-aarch64",
211232
tags=['linux', 'unix', 'fedora', 'arm', 'arm64', 'aarch64'],
233+
configure_flags=[
234+
BranchConfigureFlags("--with-dtrace", min_branch=(3, 15)),
235+
],
212236
parallel_tests=32,
213237
),
214238
cpw(
215239
name="cstratak-fedora-stable-aarch64",
216240
tags=['linux', 'unix', 'fedora', 'arm', 'arm64', 'aarch64'],
241+
configure_flags=[
242+
BranchConfigureFlags("--with-dtrace", min_branch=(3, 15)),
243+
],
217244
parallel_tests=32,
218245
),
219246
cpw(
@@ -225,11 +252,17 @@ def get_workers(settings):
225252
cpw(
226253
name="cstratak-CentOS9-aarch64",
227254
tags=['linux', 'unix', 'rhel', 'arm', 'arm64', 'aarch64'],
255+
configure_flags=[
256+
BranchConfigureFlags("--with-dtrace", min_branch=(3, 15)),
257+
],
228258
parallel_tests=32,
229259
),
230260
cpw(
231261
name="cstratak-CentOS10-aarch64",
232262
tags=['linux', 'unix', 'rhel', 'arm', 'arm64', 'aarch64'],
263+
configure_flags=[
264+
BranchConfigureFlags("--with-dtrace", min_branch=(3, 15)),
265+
],
233266
parallel_tests=32,
234267
),
235268
cpw(
@@ -248,11 +281,17 @@ def get_workers(settings):
248281
cpw(
249282
name="cstratak-fedora-rawhide-s390x",
250283
tags=['linux', 'unix', 'fedora', 's390x'],
284+
configure_flags=[
285+
BranchConfigureFlags("--with-dtrace", min_branch=(3, 15)),
286+
],
251287
parallel_tests=10,
252288
),
253289
cpw(
254290
name="cstratak-fedora-stable-s390x",
255291
tags=['linux', 'unix', 'fedora', 's390x'],
292+
configure_flags=[
293+
BranchConfigureFlags("--with-dtrace", min_branch=(3, 15)),
294+
],
256295
parallel_tests=10,
257296
),
258297
cpw(
@@ -264,6 +303,9 @@ def get_workers(settings):
264303
cpw(
265304
name="cstratak-rhel9-s390x",
266305
tags=['linux', 'unix', 'rhel', 's390x'],
306+
configure_flags=[
307+
BranchConfigureFlags("--with-dtrace", min_branch=(3, 15)),
308+
],
267309
parallel_tests=10,
268310
),
269311
cpw(

0 commit comments

Comments
 (0)