From 3a67011381aa58ffbfca4ff757abaf75aa68350d Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Mon, 13 Nov 2017 18:22:25 -1000 Subject: [PATCH] Make sure correct cmake.exe path is used by appveyor --- .appveyor.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 891a3614f..e99746811 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -35,7 +35,7 @@ install: - appveyor DownloadFile %CMAKE_URL% -FileName cmake.zip - 7z x cmake.zip -oC:\projects\deps\cmake > nul - 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 @@ -54,7 +54,7 @@ before_build: build_script: - mkdir 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 notifications: @@ -69,5 +69,5 @@ notifications: on_build_status_changed: false # Uncomment this to debug AppVeyor failures. -on_finish: - - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) +#on_finish: +# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))