diff options
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/appveyor.yml b/appveyor.yml index 23d3a2649a..e27b8e1b88 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,8 @@ version: '{build}' environment: APPVEYOR_CACHE_ENTRY_ZIP_ARGS: "-t7z -m0=lzma -mx=9" + DEPS_BUILD_DIR: "C:/projects/nvim-deps" + DEPS_PREFIX: "C:/projects/nvim-deps/usr" image: Visual Studio 2017 configuration: - MSVC_64 @@ -15,6 +17,8 @@ init: $env:APPVEYOR_CACHE_SKIP_SAVE = "true" Exit-AppVeyorBuild } +# RDP +#- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) matrix: allow_failures: - configuration: MINGW_64-gcov @@ -24,11 +28,7 @@ before_build: build_script: - powershell ci\build.ps1 cache: -- C:\msys64\var\cache\pacman\pkg -> ci\build.ps1 -- deps-MINGW -> ci\build.ps1 -- deps-MSVC -> ci\build.ps1 -- deps-MINGW -> third-party\** -- deps-MSVC -> third-party\** +- C:\projects\nvim-deps -> third-party\** artifacts: - path: build/Neovim.zip - path: build/bin/nvim.exe |