Use native tools present on the machine rather than bootstraped tools in CI build (#7841)

This commit is contained in:
Igor Velikorossov 2022-09-26 17:58:08 +10:00 коммит произвёл GitHub
Родитель 778f276870
Коммит 47b3f56fb6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 3 добавлений и 3 удалений

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

@ -1,2 +1,2 @@
@echo off
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0eng\common\Build.ps1""" -restore %*"
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0eng\common\Build.ps1""" -NativeToolsOnMachine -restore %*"

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

@ -1,3 +1,3 @@
@echo off
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0eng\common\Build.ps1""" -restore -build -bl %*"
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0eng\common\Build.ps1""" -NativeToolsOnMachine -restore -build -bl %*"
exit /b %ErrorLevel%

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

@ -21,6 +21,6 @@
"Microsoft.NET.Sdk.IL": "8.0.0-alpha.1.22471.15"
},
"native-tools": {
"cmake": "3.21.0"
"cmake": "3"
}
}