xlnt/.appveyor.yml

46 lines
1.1 KiB
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
cache:
- vcpkg -> .appveyor.yml
2017-03-24 08:40:59 +08:00
platform:
2017-03-24 09:06:20 +08:00
- Win32
2017-03-24 08:40:59 +08:00
- x64
configuration:
- Debug
- Release
2017-03-24 08:42:40 +08:00
environment:
matrix:
- 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
- vcpkg install cryptopp:x64-windows zlib:x64-windows expat:x64-windows cryptopp:x86-windows zlib:x86-windows expat:x86-windows
- vcpkg integrate install
- cd ..
before_build:
2017-03-24 09:06:20 +08:00
- mkdir build
- cd build
- cmake -G "Visual Studio 14 2015" -D CMAKE_GENERATOR_PLATFORM=%platform% -D STATIC=%STATIC% -D SAMPLES=ON -D BENCHMARKS=ON -D CMAKE_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:
2017-03-24 09:51:38 +08:00
- cd build\tests\%configuration%
- set PATH=C:\projects\xlnt\vcpkg\installed\%platform%-windows\debug\bin;%PATH%
- xlnt.test.exe