mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
version: '{build}'
|
|
os: Visual Studio 2015
|
|
|
|
cache:
|
|
- vcpkg -> .appveyor.yml
|
|
|
|
platform:
|
|
- x64
|
|
|
|
configuration:
|
|
- Debug
|
|
|
|
environment:
|
|
matrix:
|
|
- STATIC: OFF
|
|
- STATIC: ON
|
|
|
|
init: []
|
|
|
|
install:
|
|
- if [%platform%]==[Win32] set VCPKG_PLATFORM=x86-windows
|
|
- if [%platform%]==[x64] set VCPKG_PLATFORM=x64-windows
|
|
- if not exist vcpkg git clone https://github.com/Microsoft/vcpkg
|
|
- cd vcpkg
|
|
- if not exist downloads mkdir downloads
|
|
- if not exist downloads\AlwaysAllowDownloads type nul > downloads\AlwaysAllowDownloads
|
|
- powershell -exec bypass scripts\bootstrap.ps1
|
|
- vcpkg install cryptopp:%VCPKG_PLATFORM% zlib:%VCPKG_PLATFORM% expat:%VCPKG_PLATFORM%
|
|
- vcpkg integrate install
|
|
- cd ..
|
|
|
|
before_build:
|
|
- 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
|
|
|
|
test_script:
|
|
- cd tests\%configuration%
|
|
- set VCPKG_DIR=%VCPKG_PLATFORM%
|
|
- if [%configuration%]==[Debug] set VCPKG_DIR=%VCPKG_DIR%\debug
|
|
- set PATH=C:\projects\xlnt\vcpkg\installed\%VCPKG_DIR%\bin;%PATH%
|
|
- xlnt.test.exe
|