File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -920,24 +920,21 @@ buildvariants:
920
920
# Oidc auth tests
921
921
- name : auth-oidc-ubuntu-22
922
922
tasks :
923
- - name : testoidc_task_group
924
- - name : testazureoidc_task_group
925
- - name : testgcpoidc_task_group
926
- - name : testk8soidc_task_group
923
+ - name : .auth_oidc
927
924
display_name : Auth OIDC Ubuntu-22
928
925
run_on :
929
926
- ubuntu2204-small
930
927
batchtime : 10080
931
928
- name : auth-oidc-macos
932
929
tasks :
933
- - name : testoidc_task_group
930
+ - name : .auth_oidc !.auth_oidc_remote
934
931
display_name : Auth OIDC macOS
935
932
run_on :
936
933
- macos-14
937
934
batchtime : 10080
938
935
- name : auth-oidc-win64
939
936
tasks :
940
- - name : testoidc_task_group
937
+ - name : .auth_oidc !.auth_oidc_remote
941
938
display_name : Auth OIDC Win64
942
939
run_on :
943
940
- windows-64-vsMulti-small
Original file line number Diff line number Diff line change @@ -663,11 +663,11 @@ def create_serverless_variants():
663
663
664
664
def create_oidc_auth_variants ():
665
665
variants = []
666
- other_tasks = ["testazureoidc_task_group" , "testgcpoidc_task_group" , "testk8soidc_task_group" ]
667
666
for host_name in ["ubuntu22" , "macos" , "win64" ]:
668
- tasks = ["testoidc_task_group" ]
669
667
if host_name == "ubuntu22" :
670
- tasks += other_tasks
668
+ tasks = [".auth_oidc" ]
669
+ else :
670
+ tasks = [".auth_oidc !.auth_oidc_remote" ]
671
671
host = HOSTS [host_name ]
672
672
variants .append (
673
673
create_variant (
@@ -890,7 +890,10 @@ def create_oidc_tasks():
890
890
vars = dict (TEST_NAME = "auth_oidc" , SUB_TEST_NAME = sub_test )
891
891
test_func = FunctionCall (func = "run tests" , vars = vars )
892
892
task_name = f"test-auth-oidc-{ sub_test } "
893
- tasks .append (EvgTask (name = task_name , tags = ["oidc" ], commands = [test_func ]))
893
+ tags = ["auth_oidc" ]
894
+ if sub_test != "test" :
895
+ tags .append ("auth_oidc_remote" )
896
+ tasks .append (EvgTask (name = task_name , tags = tags , commands = [test_func ]))
894
897
tasks .append ([])
895
898
896
899
You can’t perform that action at this time.
0 commit comments