Skip to content

Commit d893f4b

Browse files
committed
Add --with-dtrace to the cstratak workers on 3.15+
1 parent f27dd23 commit d893f4b

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
@@ -163,11 +163,17 @@ def get_workers(settings):
163163
cpw(
164164
name="cstratak-fedora-rawhide-x86_64",
165165
tags=['linux', 'unix', 'fedora', 'amd64', 'x86-64'],
166+
branch_flags=[
167+
BranchWorkerFlags(configure=["--with-dtrace"], min_branch=(3, 15)),
168+
],
166169
parallel_tests=10,
167170
),
168171
cpw(
169172
name="cstratak-fedora-stable-x86_64",
170173
tags=['linux', 'unix', 'fedora', 'amd64', 'x86-64'],
174+
branch_flags=[
175+
BranchWorkerFlags(configure=["--with-dtrace"], min_branch=(3, 15)),
176+
],
171177
parallel_tests=10,
172178
),
173179
cpw(
@@ -186,24 +192,36 @@ def get_workers(settings):
186192
cpw(
187193
name="cstratak-CentOS9-x86_64",
188194
tags=['linux', 'unix', 'rhel', 'amd64', 'x86-64'],
195+
branch_flags=[
196+
BranchWorkerFlags(configure=["--with-dtrace"], min_branch=(3, 15)),
197+
],
189198
parallel_tests=6,
190199
),
191200
cpw(
192201
name="cstratak-CentOS9-fips-x86_64",
193202
tags=['linux', 'unix', 'rhel', 'amd64', 'x86-64', 'fips'],
203+
branch_flags=[
204+
BranchWorkerFlags(configure=["--with-dtrace"], min_branch=(3, 15)),
205+
],
194206
parallel_tests=6,
195207
# Only 3.12+ for FIPS builder
196208
not_branches=["3.10", "3.11"],
197209
),
198210
cpw(
199211
name="cstratak-fedora-rawhide-ppc64le",
200212
tags=['linux', 'unix', 'fedora', 'ppc64le'],
213+
branch_flags=[
214+
BranchWorkerFlags(configure=["--with-dtrace"], min_branch=(3, 15)),
215+
],
201216
parallel_tests=10,
202217
timeout_factor=2, # Increase the timeout on this slow worker
203218
),
204219
cpw(
205220
name="cstratak-fedora-stable-ppc64le",
206221
tags=['linux', 'unix', 'fedora', 'ppc64le'],
222+
branch_flags=[
223+
BranchWorkerFlags(configure=["--with-dtrace"], min_branch=(3, 15)),
224+
],
207225
parallel_tests=10,
208226
timeout_factor=2, # Increase the timeout on this slow worker
209227
),
@@ -217,17 +235,26 @@ def get_workers(settings):
217235
cpw(
218236
name="cstratak-CentOS9-ppc64le",
219237
tags=['linux', 'unix', 'rhel', 'ppc64le'],
238+
branch_flags=[
239+
BranchWorkerFlags(configure=["--with-dtrace"], min_branch=(3, 15)),
240+
],
220241
parallel_tests=10,
221242
timeout_factor=2, # Increase the timeout on this slow worker
222243
),
223244
cpw(
224245
name="cstratak-fedora-rawhide-aarch64",
225246
tags=['linux', 'unix', 'fedora', 'arm', 'arm64', 'aarch64'],
247+
branch_flags=[
248+
BranchWorkerFlags(configure=["--with-dtrace"], min_branch=(3, 15)),
249+
],
226250
parallel_tests=32,
227251
),
228252
cpw(
229253
name="cstratak-fedora-stable-aarch64",
230254
tags=['linux', 'unix', 'fedora', 'arm', 'arm64', 'aarch64'],
255+
branch_flags=[
256+
BranchWorkerFlags(configure=["--with-dtrace"], min_branch=(3, 15)),
257+
],
231258
parallel_tests=32,
232259
),
233260
cpw(
@@ -239,11 +266,17 @@ def get_workers(settings):
239266
cpw(
240267
name="cstratak-CentOS9-aarch64",
241268
tags=['linux', 'unix', 'rhel', 'arm', 'arm64', 'aarch64'],
269+
branch_flags=[
270+
BranchWorkerFlags(configure=["--with-dtrace"], min_branch=(3, 15)),
271+
],
242272
parallel_tests=32,
243273
),
244274
cpw(
245275
name="cstratak-CentOS10-aarch64",
246276
tags=['linux', 'unix', 'rhel', 'arm', 'arm64', 'aarch64'],
277+
branch_flags=[
278+
BranchWorkerFlags(configure=["--with-dtrace"], min_branch=(3, 15)),
279+
],
247280
parallel_tests=32,
248281
),
249282
cpw(
@@ -262,11 +295,17 @@ def get_workers(settings):
262295
cpw(
263296
name="cstratak-fedora-rawhide-s390x",
264297
tags=['linux', 'unix', 'fedora', 's390x'],
298+
branch_flags=[
299+
BranchWorkerFlags(configure=["--with-dtrace"], min_branch=(3, 15)),
300+
],
265301
parallel_tests=10,
266302
),
267303
cpw(
268304
name="cstratak-fedora-stable-s390x",
269305
tags=['linux', 'unix', 'fedora', 's390x'],
306+
branch_flags=[
307+
BranchWorkerFlags(configure=["--with-dtrace"], min_branch=(3, 15)),
308+
],
270309
parallel_tests=10,
271310
),
272311
cpw(
@@ -278,6 +317,9 @@ def get_workers(settings):
278317
cpw(
279318
name="cstratak-rhel9-s390x",
280319
tags=['linux', 'unix', 'rhel', 's390x'],
320+
branch_flags=[
321+
BranchWorkerFlags(configure=["--with-dtrace"], min_branch=(3, 15)),
322+
],
281323
parallel_tests=10,
282324
),
283325
cpw(

0 commit comments

Comments
 (0)