Skip to content

Commit 4684581

Browse files
committed
restructure variants
1 parent a8148d7 commit 4684581

File tree

3 files changed

+12
-26
lines changed

3 files changed

+12
-26
lines changed

.evergreen/config.yml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1788,27 +1788,6 @@ buildvariants:
17881788
tasks:
17891789
- name: "coverage-report"
17901790

1791-
- name: testazureoidc-variant
1792-
display_name: "OIDC Auth Azure"
1793-
run_on: ubuntu2204-small
1794-
tasks:
1795-
- name: testazureoidc_task_group
1796-
batchtime: 20160 # Use a batchtime of 14 days as suggested by the CSFLE test README
1797-
1798-
- name: testgcpoidc-variant
1799-
display_name: "OIDC Auth GCP"
1800-
run_on: ubuntu2204-small
1801-
tasks:
1802-
- name: testgcpoidc_task_group
1803-
batchtime: 20160 # Use a batchtime of 14 days as suggested by the CSFLE test README
1804-
1805-
- name: testk8soidc-variant
1806-
display_name: "OIDC Auth K8S"
1807-
run_on: ubuntu2204-small
1808-
tasks:
1809-
- name: testk8soidc_task_group
1810-
batchtime: 20160 # Use a batchtime of 14 days as suggested by the CSFLE test README
1811-
18121791
- name: testgcpkms-variant
18131792
display_name: "GCP KMS"
18141793
run_on:

.evergreen/generated_configs/variants.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,12 +1096,15 @@ buildvariants:
10961096
VERSION: "8.0"
10971097

10981098
# Oidc auth tests
1099-
- name: oidc-auth-rhel8
1099+
- name: oidc-auth-ubuntu-22
11001100
tasks:
11011101
- name: testoidc_task_group
1102-
display_name: OIDC Auth RHEL8
1102+
- name: testazureoidc_task_group
1103+
- name: testgcpoidc_task_group
1104+
- name: testk8soidc_task_group
1105+
display_name: OIDC Auth Ubuntu-22
11031106
run_on:
1104-
- rhel87-small
1107+
- ubuntu2204-small
11051108
batchtime: 20160
11061109
- name: oidc-auth-macos
11071110
tasks:

.evergreen/scripts/generate_config.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -619,10 +619,14 @@ def create_serverless_variants():
619619

620620
def create_oidc_auth_variants():
621621
variants = []
622-
for host in ["rhel8", "macos", "win64"]:
622+
other_tasks = ["testazureoidc_task_group", "testgcpoidc_task_group", "testk8soidc_task_group"]
623+
for host in ["ubuntu22", "macos", "win64"]:
624+
tasks = ["testoidc_task_group"]
625+
if host == "ubuntu22":
626+
tasks += other_tasks
623627
variants.append(
624628
create_variant(
625-
["testoidc_task_group"],
629+
tasks,
626630
get_display_name("OIDC Auth", host),
627631
host=host,
628632
batchtime=BATCHTIME_WEEK * 2,

0 commit comments

Comments
 (0)