Update variable names in CI configuration

This commit is contained in:
Tess Gauthier 2025-02-04 15:43:49 -05:00 committed by GitHub
parent 35a6a41d8b
commit d7f8106908
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -90,7 +90,7 @@ stages:
vmImage: windows-latest
displayName: Win32-OpenSSH On Windows
variables:
systemDrive: '**'
testFilesDrivePath: '**'
steps:
- powershell: |
$powerShellPath = Join-Path -Path $env:AGENT_TEMPDIRECTORY -ChildPath 'powershell'
@ -167,13 +167,13 @@ stages:
displayName: Run tests
- pwsh: |
Write-Host "##vso[task.setvariable variable=systemDrive;]$env:SystemDrive"
Write-Host "##vso[task.setvariable variable=testFilesDrivePath;]$env:SystemDrive"
displayName: Set variable
- task: PublishTestResults@2
inputs:
testResultsFormat: 'NUnit'
testResultsFiles: '$(systemDrive)/OpenSSHTests/*.xml'
testResultsFiles: '$(testFilesDrivePath)/OpenSSHTests/*.xml'
condition: always()
- pwsh: |