mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
35 lines
863 B
YAML
35 lines
863 B
YAML
version: '{build}'
|
|
environment:
|
|
APPVEYOR_CACHE_ENTRY_ZIP_ARGS: "-t7z -m0=lzma -mx=9"
|
|
image: Visual Studio 2017
|
|
configuration:
|
|
- MSVC_64
|
|
- MSVC_32
|
|
- MINGW_64
|
|
- MINGW_32
|
|
- MINGW_64-gcov
|
|
init:
|
|
- ps: |
|
|
# For pull requests, skip some build configurations to save time.
|
|
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
|
|
}
|
|
matrix:
|
|
allow_failures:
|
|
- configuration: MINGW_64-gcov
|
|
install: []
|
|
before_build:
|
|
- ps: Install-Product node 8
|
|
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\**
|
|
artifacts:
|
|
- path: build/Neovim.zip
|
|
- path: build/bin/nvim.exe
|