This commit is contained in:
Max Golovanov 2021-03-22 12:13:13 -07:00
Родитель 45d546b591
Коммит 94bc362871
2 изменённых файлов: 7 добавлений и 2 удалений

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

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

@ -43,6 +43,10 @@ if exist "%VSINSTALLDIR%" (
"%VSINSTALLER%" modify --installPath "%VSINSTALLDIR%" --config "%~dp0\.vsconfig.%VSVERSION%" --force --quiet --norestart
)
REM Temporary disable vcpkg installation
echo Skipping vcpkg installation
goto skip_vcpkg_install
where /Q vcpkg.exe
if ERRORLEVEL 1 (
REM Build our own vcpkg from source
@ -53,8 +57,7 @@ if ERRORLEVEL 1 (
REM Install it
vcpkg install gtest:x64-windows
REM Temporarily disable the build of Google Benchmark due to GitHub Actions runner 'hang' on it
REM vcpkg install --overlay-ports=%~dp0\ports benchmark:x64-windows
vcpkg install --overlay-ports=%~dp0\ports benchmark:x64-windows
vcpkg install ms-gsl:x64-windows
if DEFINED INSTALL_LLVM (
@ -62,5 +65,7 @@ if DEFINED INSTALL_LLVM (
call install-llvm.cmd
)
:skip_vcpkg_install
popd
exit /b 0