From 17c1a45e4759bfd0f10a9a3d77cb7dc207018534 Mon Sep 17 00:00:00 2001 From: Charalampos Stratakis Date: Mon, 18 Nov 2024 23:25:22 +0100 Subject: [PATCH] FIPS builders should compile only 3.12+ branches --- master/custom/workers.py | 4 ++-- master/master.cfg | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/master/custom/workers.py b/master/custom/workers.py index 26ecc79c..fcf24bc3 100644 --- a/master/custom/workers.py +++ b/master/custom/workers.py @@ -91,7 +91,7 @@ def get_workers(settings): ), cpw( name="cstratak-RHEL8-fips-x86_64", - tags=['linux', 'unix', 'rhel', 'amd64', 'x86-64'], + tags=['linux', 'unix', 'rhel', 'amd64', 'x86-64', 'fips'], parallel_tests=6, ), cpw( @@ -101,7 +101,7 @@ def get_workers(settings): ), cpw( name="cstratak-CentOS9-fips-x86_64", - tags=['linux', 'unix', 'rhel', 'amd64', 'x86-64'], + tags=['linux', 'unix', 'rhel', 'amd64', 'x86-64', 'fips'], parallel_tests=6, ), cpw( diff --git a/master/master.cfg b/master/master.cfg index 58da5348..fa5bdada 100644 --- a/master/master.cfg +++ b/master/master.cfg @@ -278,6 +278,10 @@ for branch_num, (git_url, branchname, git_branch) in enumerate(git_branches): if 'nogil' in tags and branchname in {"3.9", "3.10", "3.11", "3.12"}: continue + # Only 3.12+ for FIPS builders + if 'fips' in tags and branchname in {"3.9", "3.10", "3.11"}: + continue + if 'refleak' in tags: refleakbuildernames.append(buildername) else: