Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .evergreen/generated_configs/variants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,17 @@ buildvariants:
batchtime: 10080
expansions:
NO_EXT: "1"
- name: other-hosts-amazon2023
tasks:
- name: .latest !.sync_async .sharded_cluster .auth .ssl
- name: .latest !.sync_async .replica_set .noauth .ssl
- name: .latest !.sync_async .standalone .noauth .nossl
display_name: Other hosts Amazon2023
run_on:
- amazon2023-arm64-latest-large-m8g
batchtime: 10080
expansions:
NO_EXT: "1"

# Atlas connect tests
- name: atlas-connect-rhel8-python3.9
Expand Down
16 changes: 13 additions & 3 deletions .evergreen/scripts/generate_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,16 @@ class Host:
DEFAULT_HOST = HOSTS["rhel8"]

# Other hosts
OTHER_HOSTS = ["RHEL9-FIPS", "RHEL8-zseries", "RHEL8-POWER8", "RHEL8-arm64"]
OTHER_HOSTS = ["RHEL9-FIPS", "RHEL8-zseries", "RHEL8-POWER8", "RHEL8-arm64", "Amazon2023"]
for name, run_on in zip(
OTHER_HOSTS, ["rhel92-fips", "rhel8-zseries-small", "rhel8-power-small", "rhel82-arm64-small"]
OTHER_HOSTS,
[
"rhel92-fips",
"rhel8-zseries-small",
"rhel8-power-small",
"rhel82-arm64-small",
"amazon2023-arm64-latest-large-m8g",
],
):
HOSTS[name] = Host(name, run_on, name, dict())

Expand Down Expand Up @@ -772,9 +779,12 @@ def create_alternative_hosts_variants():
handle_c_ext(C_EXTS[0], expansions)
for host_name in OTHER_HOSTS:
host = HOSTS[host_name]
tags = [".6.0 .standalone !.sync_async"]
if host_name == "Amazon2023":
tags = [f".latest !.sync_async {t}" for t in SUB_TASKS]
variants.append(
create_variant(
[".6.0 .standalone !.sync_async"],
tags,
display_name=get_display_name("Other hosts", host),
batchtime=batchtime,
host=host,
Expand Down
Loading