update dotnet install script location for tests (#7644)

This commit is contained in:
Ashish Kumar Singh 2023-03-20 13:03:32 +05:30 коммит произвёл GitHub
Родитель 3862454d9a
Коммит 4029c919fe
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 1506 добавлений и 13 удалений

Просмотреть файл

@ -36,14 +36,6 @@ trigger:
batch: true
branches:
include:
- main
- release/3.*
- release/5.*
- release/6.*
- release/7.*
- internal/release/5.*
- internal/release/6.*
- experimental/*
- ctp
- feature/*
paths:
@ -54,7 +46,7 @@ pr:
autoCancel: true
branches:
include:
- main
- ctp
paths:
exclude:
- Documentation/*

1501
dotnet-test-install.ps1 Normal file

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -191,28 +191,28 @@ jobs:
- task: PowerShell@2
displayName: Install .NET Core
inputs:
filePath: $(Build.SourcesDirectory)/eng/common/dotnet-test-install.ps1
filePath: $(Build.SourcesDirectory)/dotnet-test-install.ps1
arguments: -InstallDir $(_programfiles) -Architecture $(_Platform) -Runtime dotnet -Version 8.0.0-alpha.1.23080.2
condition: eq(variables['_Platform'], 'x64')
- task: PowerShell@2
displayName: Install .NET Core(x86)
inputs:
filePath: $(Build.SourcesDirectory)/eng/common/dotnet-test-install.ps1
filePath: $(Build.SourcesDirectory)/dotnet-test-install.ps1
arguments: -InstallDir $(_programfilesx86) -Architecture $(_Platform) -Runtime dotnet -Version 8.0.0-alpha.1.23080.2
condition: eq(variables['_Platform'], 'x86')
- task: PowerShell@2
displayName: Install .NET WindowsDesktop
inputs:
filePath: $(Build.SourcesDirectory)/eng/common/dotnet-test-install.ps1
filePath: $(Build.SourcesDirectory)/dotnet-test-install.ps1
arguments: -InstallDir $(_programfiles) -Architecture $(_Platform) -Runtime windowsdesktop -Version 8.0.0-alpha.1.23080.2
condition: eq(variables['_Platform'], 'x64')
- task: PowerShell@2
displayName: Install .NET WindowsDesktop(x86)
inputs:
filePath: $(Build.SourcesDirectory)/eng/common/dotnet-test-install.ps1
filePath: $(Build.SourcesDirectory)/dotnet-test-install.ps1
arguments: -InstallDir $(_programfilesx86) -Architecture $(_Platform) -Runtime windowsdesktop -Version 8.0.0-alpha.1.23080.2
condition: eq(variables['_Platform'], 'x86')