2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-04 22:35:53 +00:00

Make sure correct cmake.exe path is used by appveyor

This commit is contained in:
Jack Andersen 2017-11-13 18:22:25 -10:00
parent f07834521d
commit 3a67011381

View File

@ -35,7 +35,7 @@ install:
- appveyor DownloadFile %CMAKE_URL% -FileName cmake.zip - appveyor DownloadFile %CMAKE_URL% -FileName cmake.zip
- 7z x cmake.zip -oC:\projects\deps\cmake > nul - 7z x cmake.zip -oC:\projects\deps\cmake > nul
- set PATH=C:\projects\deps\cmake\bin;%PATH% - set PATH=C:\projects\deps\cmake\bin;%PATH%
- C:\projects\deps\cmake\bin\cmake.exe --version - C:\projects\deps\cmake\cmake-3.9.6-win64-x64\bin\cmake.exe --version
############################################################################ ############################################################################
# Install custom LLVM # Install custom LLVM
@ -54,7 +54,7 @@ before_build:
build_script: build_script:
- mkdir build - mkdir build
- cd build - cd build
- C:\projects\deps\cmake\bin\cmake.exe -GNinja .. - C:\projects\deps\cmake\cmake-3.9.6-win64-x64\bin\cmake.exe -GNinja ..
- ninja - ninja
notifications: notifications:
@ -69,5 +69,5 @@ notifications:
on_build_status_changed: false on_build_status_changed: false
# Uncomment this to debug AppVeyor failures. # Uncomment this to debug AppVeyor failures.
on_finish: #on_finish:
- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) # - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))