Skip to content

Commit

Permalink
Check for ninja/ccache before installing
Browse files Browse the repository at this point in the history
  • Loading branch information
mikee47 committed Jul 19, 2024
1 parent e544bdd commit c384b72
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Tools/ci/install.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ if "%BUILD_DOCS%" == "true" (
)

REM Python and CMake are preconfigured
choco install ninja ccache -y --no-progress || goto :error
where ninja
if errorlevel 1 choco install ninja -y --no-progress || goto :error
where ccache
if errorlevel 1 choco install ccache -y --no-progress || goto :error

call %~dp0..\mingw-install.cmd || goto :error

Expand Down

0 comments on commit c384b72

Please sign in to comment.