diff --git a/eng/pipelines/templates/stages/archetype-sdk-tests.yml b/eng/pipelines/templates/stages/archetype-sdk-tests.yml index 57e972856229..a40475490dce 100644 --- a/eng/pipelines/templates/stages/archetype-sdk-tests.yml +++ b/eng/pipelines/templates/stages/archetype-sdk-tests.yml @@ -25,7 +25,7 @@ parameters: default: 'Public' - name: SupportedClouds type: string - default: 'Public,Canary' + default: 'Public' - name: UnsupportedClouds type: string default: '' @@ -71,9 +71,6 @@ parameters: stages: - ${{ each cloud in parameters.CloudConfig }}: - # TODO: re-enable tests-weekly allow filter once sovereign cloud live tests are stable: https://github.com/Azure/azure-sdk/issues/2074 - # Run all clouds by default for weekly test pipeline, except for clouds specifically unsupported by the calling pipeline - # - ${{ if or(contains(parameters.Clouds, cloud.key), contains(variables['Build.DefinitionName'], 'tests-weekly')) }}: - ${{ if or(contains(parameters.Clouds, cloud.key), and(contains(variables['Build.DefinitionName'], 'tests-weekly'), contains(parameters.SupportedClouds, cloud.key))) }}: - ${{ if not(contains(parameters.UnsupportedClouds, cloud.key)) }}: - stage: ${{ cloud.key }}