Skip to content

Commit 8a55ba1

Browse files
committed
update selectors
1 parent 15ad682 commit 8a55ba1

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.evergreen/generated_configs/variants.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -902,12 +902,12 @@ buildvariants:
902902
tags: [versionedApi_tag]
903903
- name: stable-api-accept-v2-rhel8-auth
904904
tasks:
905-
- name: .standard-linux .server-5.0
906-
- name: .standard-linux .server-6.0
907-
- name: .standard-linux .server-7.0
908-
- name: .standard-linux .server-8.0
909-
- name: .standard-linux .server-rapid
910-
- name: .standard-linux .server-latest
905+
- name: .standard-linux .server-5.0 .standalone-noauth-nossl
906+
- name: .standard-linux .server-6.0 .standalone-noauth-nossl
907+
- name: .standard-linux .server-7.0 .standalone-noauth-nossl
908+
- name: .standard-linux .server-8.0 .standalone-noauth-nossl
909+
- name: .standard-linux .server-rapid .standalone-noauth-nossl
910+
- name: .standard-linux .server-latest .standalone-noauth-nossl
911911
display_name: Stable API accept v2 RHEL8 Auth
912912
run_on:
913913
- rhel87-small

.evergreen/scripts/generate_config.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,10 @@ def create_stable_api_variants():
326326
# requireApiVersion, and don't automatically add apiVersion to
327327
# clients created in the test suite.
328328
expansions["ORCHESTRATION_FILE"] = "versioned-api-testing.json"
329-
tasks = [f".standard-linux .server-{v}" for v in get_versions_from("5.0")]
329+
tasks = [
330+
f".standard-linux .server-{v} .standalone-noauth-nossl"
331+
for v in get_versions_from("5.0")
332+
]
330333
base_display_name = f"Stable API {test_type}"
331334
display_name = get_variant_name(base_display_name, host, **expansions)
332335
variant = create_variant(tasks, display_name, host=host, tags=tags, expansions=expansions)

0 commit comments

Comments
 (0)