update dotnet install script location for tests (#7644)
This commit is contained in:
Родитель
3862454d9a
Коммит
4029c919fe
|
@ -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/*
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -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')
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче