2015-08-27 14:09:21 -07:00
|
|
|
version: '{build}'
|
2017-09-30 07:06:13 -07:00
|
|
|
environment:
|
|
|
|
APPVEYOR_CACHE_ENTRY_ZIP_ARGS: "-t7z -m0=lzma -mx=9"
|
2019-04-07 15:14:01 -07:00
|
|
|
DEPS_BUILD_DIR: "C:/projects/nvim-deps"
|
|
|
|
DEPS_PREFIX: "C:/projects/nvim-deps/usr"
|
2018-03-04 16:44:23 -07:00
|
|
|
image: Visual Studio 2017
|
2016-08-25 22:38:46 -07:00
|
|
|
configuration:
|
2018-03-26 08:54:44 -07:00
|
|
|
- MSVC_64
|
|
|
|
- MSVC_32
|
2016-08-25 22:38:46 -07:00
|
|
|
- MINGW_64
|
|
|
|
- MINGW_32
|
2017-08-15 02:06:51 -07:00
|
|
|
- MINGW_64-gcov
|
2019-04-07 05:43:50 -07:00
|
|
|
init:
|
|
|
|
- ps: |
|
2019-04-08 15:17:07 -07:00
|
|
|
# Pull requests: skip some build configurations to save time.
|
2019-04-07 05:43:50 -07:00
|
|
|
if ($env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT -and $env:CONFIGURATION -match '^(MSVC_64|MINGW_32|MINGW_64-gcov)$') {
|
|
|
|
$env:APPVEYOR_CACHE_SKIP_SAVE = "true"
|
|
|
|
Exit-AppVeyorBuild
|
|
|
|
}
|
2019-04-07 15:14:01 -07:00
|
|
|
# RDP
|
|
|
|
#- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
2017-08-16 08:24:12 -07:00
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- configuration: MINGW_64-gcov
|
2015-08-27 14:09:21 -07:00
|
|
|
install: []
|
2017-11-28 23:50:11 -07:00
|
|
|
before_build:
|
|
|
|
- ps: Install-Product node 8
|
2015-08-27 14:09:21 -07:00
|
|
|
build_script:
|
2018-03-11 15:44:07 -07:00
|
|
|
- powershell ci\build.ps1
|
2017-02-15 19:10:00 -07:00
|
|
|
cache:
|
2019-04-07 15:14:01 -07:00
|
|
|
- C:\projects\nvim-deps -> third-party\**
|
2016-08-01 05:16:08 -07:00
|
|
|
artifacts:
|
|
|
|
- path: build/Neovim.zip
|
2016-12-09 08:36:16 -07:00
|
|
|
- path: build/bin/nvim.exe
|