Skip to content

Commit 5ac282b

Browse files
committed
require fips
1 parent 92970d3 commit 5ac282b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.evergreen/generated_configs/variants.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ buildvariants:
1818
batchtime: 10080
1919
expansions:
2020
NO_EXT: "1"
21+
REQUIRE_FIPS: "1"
2122
- name: other-hosts-rhel8-zseries
2223
tasks:
2324
- name: .6.0 .standalone !.sync_async

.evergreen/scripts/generate_config.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -800,10 +800,12 @@ def create_alternative_hosts_variants():
800800
)
801801
)
802802

803-
expansions = dict()
804-
handle_c_ext(C_EXTS[0], expansions)
805803
for host_name in OTHER_HOSTS:
804+
expansions = dict()
805+
handle_c_ext(C_EXTS[0], expansions)
806806
host = HOSTS[host_name]
807+
if "fips" in host_name.lower():
808+
expansions["REQUIRE_FIPS"] = "1"
807809
tags = [".6.0 .standalone !.sync_async"]
808810
if host_name == "Amazon2023":
809811
tags = [f".latest !.sync_async {t}" for t in SUB_TASKS]

0 commit comments

Comments
 (0)