forked from ycm-core/ycmd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
40 lines (40 loc) · 1.21 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
version: '{build}'
environment:
USE_CLANG_COMPLETER: true
COVERAGE: true
matrix:
# We dropped MSVC 12 support because it lacks features from C++11.
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
arch: 64
python: 36
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
arch: 32
python: 36
# We only test Python 2.7 with MSVC 15 on 64-bit.
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
arch: 64
python: 27
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
arch: 64
python: 36
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
arch: 64
python: 36
YCM_BENCHMARK: true
COVERAGE: false
install:
- ci\appveyor\appveyor_install.bat
build_script:
- ci\appveyor\appveyor_build.bat
after_build:
- if %COVERAGE% == true ( codecov )
# Disable automatic tests
test: off
cache:
- '%LOCALAPPDATA%\pip\cache' # Python packages from pip
- '%APPDATA%\npm-cache' # Node packages from npm
- '%USERPROFILE%\.cargo' # Cargo package deps
- '%APPVEYOR_BUILD_FOLDER%\clang_archives' # Clang downloads
- '%APPVEYOR_BUILD_FOLDER%\third_party\racerd\target' # Racerd compilation
# jdt.ls download
- '%APPVEYOR_BUILD_FOLDER%\third_party\eclipse.jdt.ls\target\cache'