Skip to content

Commit 2085b44

Browse files
authored
Fix yaml conditional (Azure#2371)
1 parent f10b138 commit 2085b44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/pipelines/templates/stages/archetype-sdk-client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ extends:
9494
MatrixReplace: ${{ parameters.MatrixReplace }}
9595

9696
# Run live tests for internal only, not public CI builds. This can be triggered manually via an `/azp run` comment.
97-
- ${{if and(eq(variables['System.TeamProject'], 'internal')), eq(parameters.RunLiveTests, 'true')) }}:
97+
- ${{ if and(eq(variables['System.TeamProject'], 'internal'), eq(parameters.RunLiveTests, 'true')) }}:
9898
- ${{ each cloud in parameters.CloudConfig }}:
9999
# Run all clouds by default for weekly test pipeline, except for clouds specifically unsupported by the calling pipeline
100100
- ${{ if or(contains(parameters.Clouds, cloud.key), and(contains(variables['Build.DefinitionName'], 'weekly'), contains(parameters.SupportedClouds, cloud.key))) }}:

0 commit comments

Comments
 (0)