xlnt/.appveyor.yml

38 lines
918 B
YAML
Raw Normal View History

2015-11-22 03:26:08 +08:00
version: '{build}'
2017-01-16 23:17:54 +08:00
os: Visual Studio 2015
configuration:
- Debug
cache:
- vcpkg -> .appveyor.yml
environment:
matrix:
2016-10-28 11:09:13 +08:00
- STATIC: OFF
- STATIC: ON
2015-11-22 03:26:08 +08:00
init: []
install:
2017-03-20 11:26:37 +08:00
- if not exist vcpkg git clone https://github.com/Microsoft/vcpkg
- cd vcpkg
2017-03-20 11:26:37 +08:00
- if not exist downloads mkdir downloads
- if not exist downloads\AlwaysAllowDownloads type nul > downloads\AlwaysAllowDownloads
- powershell -exec bypass scripts\bootstrap.ps1
2017-03-21 07:27:00 +08:00
- vcpkg install cryptopp:x64-windows zlib:x64-windows expat:x64-windows
- vcpkg integrate install
- cd ..
before_build:
2017-03-21 07:27:00 +08:00
- cmake -H. -Bbuild -G"Visual Studio 14 2015 Win64" -DSTATIC=%STATIC% -DSAMPLES=ON -DBENCHMARKS=ON -DCMAKE_TOOLCHAIN_FILE=vcpkg/scripts/buildsystems/vcpkg.cmake
build:
project: build/tests/xlnt.test.sln
parallel: true
verbosity: minimal
2015-11-22 03:26:08 +08:00
test_script:
- cd build\tests\Debug
- set PATH=C:\projects\xlnt\vcpkg\installed\x64-windows\debug\bin;%PATH%
- xlnt.test.exe