Skip to content

Commit e35d7b5

Browse files
authored
Try different name
1 parent deff1da commit e35d7b5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

azure-pipelines/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,25 +47,25 @@ steps:
4747
testRunTitle: $(System.StageDisplayName) $(Agent.JobName) (Attempt $(System.JobAttempt))
4848

4949
- powershell: |
50-
Write-Host "##vso[task.setvariable variable=isIntegration;]${{ parameters.isIntegration }}"
50+
Write-Host "##vso[task.setvariable variable=isIntegrationVar;]${{ parameters.isIntegration }}"
5151
5252
- powershell: |
5353
$tempPath = [System.IO.Path]::GetTempPath()
5454
echo "Temp Path: $tempPath"
5555
Get-ChildItem -Path $tempPath -Filter *.cpuprofile | Copy-Item -Destination "$(Build.SourcesDirectory)/out/logs"
5656
displayName: 'Copy .cpuprofile files to out/logs'
57-
condition: eq(variables.isIntegration, true)
57+
condition: eq(variables.isIntegrationVar, true)
5858

5959
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
6060
- task: 1ES.PublishPipelineArtifact@1
61-
condition: eq(variables.isIntegration, true)
61+
condition: eq(variables.isIntegrationVar, true)
6262
displayName: 'Upload integration test logs'
6363
inputs:
6464
path: '$(Build.SourcesDirectory)/out/logs'
6565
artifact: 'Test Logs ($(System.StageDisplayName)-$(Agent.JobName)-$(System.JobAttempt))'
6666
- ${{ else }}:
6767
- task: PublishPipelineArtifact@1
68-
condition: eq(variables.isIntegration, true)
68+
condition: eq(variables.isIntegrationVar, true)
6969
displayName: 'Upload integration test logs'
7070
inputs:
7171
targetPath: '$(Build.SourcesDirectory)/out/logs'

0 commit comments

Comments
 (0)