File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ buildvariants:
18
18
batchtime : 10080
19
19
expansions :
20
20
NO_EXT : " 1"
21
+ REQUIRE_FIPS : " 1"
21
22
- name : other-hosts-rhel8-zseries
22
23
tasks :
23
24
- name : .6.0 .standalone !.sync_async
Original file line number Diff line number Diff line change @@ -800,10 +800,12 @@ def create_alternative_hosts_variants():
800
800
)
801
801
)
802
802
803
- expansions = dict ()
804
- handle_c_ext (C_EXTS [0 ], expansions )
805
803
for host_name in OTHER_HOSTS :
804
+ expansions = dict ()
805
+ handle_c_ext (C_EXTS [0 ], expansions )
806
806
host = HOSTS [host_name ]
807
+ if "fips" in host_name .lower ():
808
+ expansions ["REQUIRE_FIPS" ] = "1"
807
809
tags = [".6.0 .standalone !.sync_async" ]
808
810
if host_name == "Amazon2023" :
809
811
tags = [f".latest !.sync_async { t } " for t in SUB_TASKS ]
You can’t perform that action at this time.
0 commit comments