Fix Bootstrap step in Windows daily test runs (#14820)

This commit is contained in:
Andrew 2021-02-17 10:56:37 -08:00 committed by GitHub
parent 59e5d67457
commit 39509a93b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,6 +99,17 @@ stages:
# must be run frow Windows PowerShell
- powershell: |
# Remove "Program Files\dotnet" from the env variable PATH, so old SDKs won't affect us.
Write-Host "Old Path:"
Write-Host $env:Path
$dotnetPath = Join-Path $env:SystemDrive 'Program Files\dotnet'
$paths = $env:Path -split ";" | Where-Object { -not $_.StartsWith($dotnetPath) }
$env:Path = $paths -join ";"
Write-Host "New Path:"
Write-Host $env:Path
Import-Module .\tools\ci.psm1
Invoke-CIInstall
displayName: Bootstrap