We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c88e50 commit 8269a93Copy full SHA for 8269a93
eng/pipelines/templates/steps/test.yml
@@ -91,8 +91,9 @@ steps:
91
condition: and(always(),eq(variables['TestType'], 'browser'))
92
displayName: "Publish browser unit test results"
93
94
- - template: /eng/common/pipelines/templates/steps/publish-1es-artifact.yml
95
- parameters:
96
- ArtifactPath: '$(Build.ArtifactStagingDirectory)/test-proxy.log'
97
- ArtifactName: 'test proxy logs $(Agent.JobName)'
98
- SbomEnabled: false
+ - ${{ if eq(parameters.TestProxy, true) }}:
+ - template: /eng/common/pipelines/templates/steps/publish-1es-artifact.yml
+ parameters:
+ ArtifactPath: '$(Build.ArtifactStagingDirectory)/test-proxy.log'
+ ArtifactName: 'test proxy logs $(Agent.JobName)'
99
+ SbomEnabled: false
0 commit comments