Skip to content

Commit 653deab

Browse files
committed
Limit the RHEL8 workers up to the 3.12 branch
1 parent 5b2bb31 commit 653deab

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

master/custom/workers.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,14 @@ def get_workers(settings):
8686
name="cstratak-RHEL8-x86_64",
8787
tags=['linux', 'unix', 'rhel', 'amd64', 'x86-64'],
8888
parallel_tests=10,
89+
branches=['3.9', '3.10', '3.11', '3.12'],
8990
),
9091
cpw(
9192
name="cstratak-RHEL8-fips-x86_64",
9293
tags=['linux', 'unix', 'rhel', 'amd64', 'x86-64', 'fips'],
9394
parallel_tests=6,
94-
# Only 3.12+ for FIPS builder
95-
not_branches=["3.9", "3.10", "3.11"],
95+
# Only 3.12 for RHEL8 FIPS builder
96+
branches=['3.12'],
9697
),
9798
cpw(
9899
name="cstratak-CentOS9-x86_64",
@@ -120,6 +121,7 @@ def get_workers(settings):
120121
name="cstratak-RHEL8-ppc64le",
121122
tags=['linux', 'unix', 'rhel', 'ppc64le'],
122123
parallel_tests=10,
124+
branches=['3.9', '3.10', '3.11', '3.12'],
123125
),
124126
cpw(
125127
name="cstratak-CentOS9-ppc64le",
@@ -140,6 +142,7 @@ def get_workers(settings):
140142
name="cstratak-RHEL8-aarch64",
141143
tags=['linux', 'unix', 'rhel', 'arm', 'arm64', 'aarch64'],
142144
parallel_tests=40,
145+
branches=['3.9', '3.10', '3.11', '3.12'],
143146
),
144147
cpw(
145148
name="cstratak-CentOS9-aarch64",
@@ -166,6 +169,7 @@ def get_workers(settings):
166169
name="cstratak-rhel8-s390x",
167170
tags=['linux', 'unix', 'rhel', 's390x'],
168171
parallel_tests=10,
172+
branches=['3.9', '3.10', '3.11', '3.12'],
169173
),
170174
cpw(
171175
name="cstratak-rhel9-s390x",

0 commit comments

Comments
 (0)