Skip to content

Commit

Permalink
Temporarily disable live test weekly allow-all filter (Azure#17236)
Browse files Browse the repository at this point in the history
  • Loading branch information
benbp authored and annelo-msft committed Feb 17, 2021
1 parent c0c499d commit 49bf3fd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion eng/pipelines/templates/stages/archetype-sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,10 @@ 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), contains(variables['Build.DefinitionName'], 'tests-weekly')) }}:
- ${{ if or(contains(parameters.Clouds, cloud.key), and(contains(variables['Build.DefinitionName'], 'tests-weekly'), eq(cloud.key, 'Canary'))) }}:
- ${{ if not(contains(parameters.UnsupportedClouds, cloud.key)) }}:
- stage: ${{ cloud.key }}
dependsOn: []
Expand Down

0 comments on commit 49bf3fd

Please sign in to comment.