Skip to content

Commit

Permalink
Temporarily disable live test weekly allow-all filter
Browse files Browse the repository at this point in the history
  • Loading branch information
benbp committed Nov 30, 2020
1 parent c360eba commit dbeb644
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 dbeb644

Please sign in to comment.