diff --git a/eng/pipelines/templates/stages/archetype-sdk-tests.yml b/eng/pipelines/templates/stages/archetype-sdk-tests.yml index 01eaf720d02b..dbf9331c0d42 100644 --- a/eng/pipelines/templates/stages/archetype-sdk-tests.yml +++ b/eng/pipelines/templates/stages/archetype-sdk-tests.yml @@ -10,7 +10,7 @@ parameters: default: 'Public' - name: SupportedClouds type: string - default: 'Public,Canary' + default: 'Public' - name: UnsupportedClouds type: string default: '' @@ -108,9 +108,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 }}_${{ parameters.TestName }}