2018-11-13 04:33:01 +00:00
|
|
|
version: "{build}"
|
|
|
|
|
|
|
|
os: Visual Studio 2017
|
|
|
|
|
|
|
|
platform:
|
|
|
|
- x64
|
|
|
|
|
|
|
|
build:
|
|
|
|
parallel: true # enable MSBuild parallel builds
|
|
|
|
verbosity: minimal
|
|
|
|
|
|
|
|
install:
|
|
|
|
- if not exist llvm.tar.xz appveyor DownloadFile "https://ziglang.org/deps/llvm+clang-7.0.0-win64-msvc-release.tar.xz" -FileName llvm.tar.xz
|
|
|
|
- 7z e -txz llvm.tar.xz
|
|
|
|
- 7z x llvm.tar
|
|
|
|
- git submodule update --init --recursive
|
|
|
|
build_script:
|
2019-01-22 14:44:13 +00:00
|
|
|
- cmake -G"Visual Studio 15 2017 Win64" -H. -Bbuild -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=C:\projects\ccls\llvm+clang-7.0.0-win64-msvc-release
|
2018-11-13 04:33:01 +00:00
|
|
|
- cmake --build build --target ccls --config Release
|
|
|
|
|
|
|
|
artifacts:
|
|
|
|
- path: build\Release
|