File tree Expand file tree Collapse file tree 3 files changed +12
-26
lines changed Expand file tree Collapse file tree 3 files changed +12
-26
lines changed Original file line number Diff line number Diff line change @@ -1788,27 +1788,6 @@ buildvariants:
1788
1788
tasks :
1789
1789
- name : " coverage-report"
1790
1790
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
-
1812
1791
- name : testgcpkms-variant
1813
1792
display_name : " GCP KMS"
1814
1793
run_on :
Original file line number Diff line number Diff line change @@ -1096,12 +1096,15 @@ buildvariants:
1096
1096
VERSION : " 8.0"
1097
1097
1098
1098
# Oidc auth tests
1099
- - name : oidc-auth-rhel8
1099
+ - name : oidc-auth-ubuntu-22
1100
1100
tasks :
1101
1101
- 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
1103
1106
run_on :
1104
- - rhel87 -small
1107
+ - ubuntu2204 -small
1105
1108
batchtime : 20160
1106
1109
- name : oidc-auth-macos
1107
1110
tasks :
Original file line number Diff line number Diff line change @@ -619,10 +619,14 @@ def create_serverless_variants():
619
619
620
620
def create_oidc_auth_variants ():
621
621
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
623
627
variants .append (
624
628
create_variant (
625
- [ "testoidc_task_group" ] ,
629
+ tasks ,
626
630
get_display_name ("OIDC Auth" , host ),
627
631
host = host ,
628
632
batchtime = BATCHTIME_WEEK * 2 ,
You can’t perform that action at this time.
0 commit comments